Click here to Skip to main content
15,889,877 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have created multiple polygon on google map and i want show show tooltip on this polygon that show the polygon name dynamically from database


here is the code to show tooltip but not working ........


C#
GEvent.addListener(poly, 'mouseover', function () {
    debugger;
    var infowindow = new GEvent.InfoWindow({
        content: 'Hello world'
    });
    infowindow.open(map);


});
Posted
Updated 8-Jun-12 3:28am
v6
Comments
bbirajdar 8-Jun-12 9:30am    
Post your query to google map forums.. You can get a quick reply there

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900