Google Maps API - Marker ToolTip

情到浓时终转凉″ 提交于 2019-11-30 12:26:00

Woops, I probably should have done a little bit more research before posting, but I figured I may as well post what my own solution.

Instead of a title, I've used the Google Maps InfoWindow:

Hopefully this will help someone else!

    var point = new google.maps.LatLng(40, -20);
    var data = "Hello World!";
    var infowindow = new google.maps.InfoWindow({
      content: data
    });
    var marker = new google.maps.Marker({
        position: point,
        title:"Hello World!"
    });
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!