Google 地图 - 如何使标记成为在灯箱中打开的链接
我创建了一个带有自定义标记和位置的谷歌地图页面。我希望用户能够单击某个位置的标记,然后在该页面上打开一个灯箱。这可能吗?谢谢!
I have created a google maps page with custom markers and locations. I want the user to be able to click on the marker of a location and it opens a lightbox on that page. Is this possible? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要查看有关 Google 地图事件处理的文档页面:
http://code.google.com/apis/maps/documentation/javascript/events.html#EventListeners
...并且从该页面...
请注意,这只是调用地图函数 (setZoom) ;假设您不想使用某种 GoogleMaps 风格的弹出窗口,则由您决定启动您可能想要的任何自定义灯箱。
You'll want to check out this documentation page, on Google Maps event handling:
http://code.google.com/apis/maps/documentation/javascript/events.html#EventListeners
...and from that page...
Note that this simply calls a map function (setZoom); it's up to you to launch any custom lightbox you might want, assuming you don't want to use a GoogleMaps-style popup of some kind.