Skip to content Skip to sidebar Skip to footer

Label Markers On Rollover

brand new here.....don't hurt me :). I also apologize if my terminology is incorrect. I have no HTML experience but come here via FileMaker. I'm working on a FileMaker database j

Solution 1:

The "title" of the marker is what is displayed on mouseover. It is being set by this code:

addMarker({
    position: markers[i]['position'],
    title: "Marker "+i,
    info: markers[i]['info']
});

Change the "Marker "+i to be the text you want displayed.


Post a Comment for "Label Markers On Rollover"