i know imagemapster can show tooltip in mouse hover, but i hope keep show that in map load start, how to do?
var image = $('img');
image.mapster({
fillColor: 'F0AF02',
fillOpacity : 0.2,
stroke: true,
strokeWidth: 2,
strokeColor: '09DA22',
mapKey: 'data-key',
mapValue: 'data-pd',
scaleMap:true,
showToolTip:true,
areas: [{
key: "a01",
toolTip: "tooltip1",
staticState: true
},
{
key: "a02",
toolTip: "tooltip2",
staticState: true,
}]
});