如何“放大”与 Google 地图 API V3 一级?

发布于 2025-01-06 11:30:36 字数 334 浏览 0 评论 0原文

我在任何地方都找不到这个简单问题的答案! 我们到底如何才能在 google 地图 API V3 中放大一级(当前一级+1)?

我的意思是有一个函数可以达到这个目的吗?或黑客或其他什么?

我实际上想做的是在位于标记信息窗口中的链接上单击时缩放一级,并且在标记上也得到相同的结果 ondblclick 但在这两种情况下,缩放每次只应增加 +1事件(单击链接或标记上的 dblclick),并且缩放中心应该是有问题的标记。

我愿意接受任何涉及原生 Googlemaps 方法、jQuery 或纯 JavaScript 的建议。

有谁遇到过同样的问题吗?

I can't find an answer for that simple question anywhere!
How on earth can we zoom in with one level (+1 from the current one) in google maps API V3?

I mean is there a function for that purpose? or a hack or whatever?

What I actually want to do is to zoom by one level onclick on a link located in a marker's infowindow and also the same result ondblclick on the marker but in both cases the zoom should increment only +1 at each event (click on link or dblclick on marker) and the zoom center should be the marker in question.

I'm open to any suggestion involving native Googlemaps methods, jQuery or plain Javascript.

Anyone who tickled the same problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

安静被遗忘 2025-01-13 11:30:36
map.setCenter(marker.getPosition());    //marker is marker to center on
map.setZoom(map.getZoom() + 1);
map.setCenter(marker.getPosition());    //marker is marker to center on
map.setZoom(map.getZoom() + 1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文