如何在 Google 地图 Pinpoint 上添加标签?
创建一个谷歌地图,其中包含用户输入地址 50 英里范围内的商店位置。有地图和精确点显示正确,但所有精确点上都只有一个点。我希望能够将它们标记为 A、B、C、D 等,以便我可以列出位置和位置。地址在侧边栏中。
我该怎么做?这是我用来添加精确点的代码。
var point = new GLatLng(latitude, longitude);
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function () {
map.openInfoWindowHtml(point, myHtml);
});
map.addOverlay(marker);
Creating a google map with store locations within 50 miles of user entered address. Have map & pinpoints showing correctly but all of the pinpoints just have a dot on them. I'd like to be able to label them A, B, C, D, etc so that I can list out locations & addresses in sidebar.
How would I do this? Here's the code I'm using to add my pinpoints.
var point = new GLatLng(latitude, longitude);
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function () {
map.openInfoWindowHtml(point, myHtml);
});
map.addOverlay(marker);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
太棒了,谢谢。包含这个js库。
http://code.google.com/p/gmaps-utility-library/< /a>
然后我需要做的就是更新
为此
Excellent, thanks. Included this js library.
http://code.google.com/p/gmaps-utility-library/
And then all I needed to do was update the
to this