Google 地图 - 如何使标记成为在灯箱中打开的链接

发布于 2024-12-05 22:32:14 字数 70 浏览 1 评论 0原文

我创建了一个带有自定义标记和位置的谷歌地图页面。我希望用户能够单击某个位置的标记,然后在该页面上打开一个灯箱。这可能吗?谢谢!

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月隐月明月朦胧 2024-12-12 22:32:14

您需要查看有关 Google 地图事件处理的文档页面:

http://code.google.com/apis/maps/documentation/javascript/events.html#EventListeners

...并且从该页面...

google.maps.event.addListener(marker, 'click', function() {
    map.setZoom(8);
});

请注意,这只是调用地图函数 (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...

google.maps.event.addListener(marker, 'click', function() {
    map.setZoom(8);
});

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文