j查询位置图标上的谷歌地图标题



我希望通过jQuery api在谷歌地图中的位置上看到标题,就像 http://s9.picofile.com/file/8304656450/map.JPG

我的代码 :

marker = new google.maps.Marker({
position: position,
map: map,
title: "12",
visible: true,
icon: '/images/location.png'
});

在这里,您可以使用解决方案

marker = new google.maps.Marker({
position: position,
map: map,
title: "12",
label: "12",  // --- this is what you need to use.
visible: true,
icon: '/images/location.png'
});

您应该使用label始终在marker上显示值。

参考文档:https://developers.google.com/maps/documentation/javascript/marker-clustering

来自谷歌文档的另一个小提琴链接 https://jsfiddle.net/api/post/library/pure/

希望这对您有所帮助。

相关内容

  • 没有找到相关文章

最新更新