单击即可缩放多个级别 - Google 地图

发布于 2024-12-29 18:52:20 字数 186 浏览 0 评论 0原文

这就是我想要实现的目标 - 当用户单击(单击)地图上的任意位置时,它会放大到预先指定的缩放级别。例如,无论当前的缩放级别如何,单击某处都会以缩放级别 11 放大该区域。

如果有必要,我可以重新加载页面来完成此操作,但随后我需要以某种方式保存纬度/经度(PHP GET变量?)以便知道地图的中心位置,对吧?

有办法做到这一点吗?

This is what I'm trying to accomplish - when the user clicks (single click) anywhere on a map, it zooms in to a pre-specified zoom level. For instance, regardless of the current zoom level, clicking somewhere zooms into that area with zoom level 11.

If necessary, I'm fine with reloading the page to accomplish this but then I would need to save the latitude/longitude somehow (PHP GET variables?) in order to know where to center the map, right?

Is there a way to accomplish this?

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

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

发布评论

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

评论(2

╰◇生如夏花灿烂 2025-01-05 18:52:20

伪教程:

  1. 为您的地图注册一个 click 事件。
  2. 在您的纬度/经度点击位置上执行 map.setCenter()
  3. 点击时执行map.setZoom(11)

A pseudo tutorial:

  1. Register a click event for your map.
  2. Do map.setCenter() on your lat/lng click location.
  3. Do map.setZoom(11) on click.
洛阳烟雨空心柳 2025-01-05 18:52:20
// Where `map` is your current Google Map 
google.maps.event.addListener(map, 'click', function(event) {
                    map.setCenter();
                    map.setZoom(11);                       
 });
// Where `map` is your current Google Map 
google.maps.event.addListener(map, 'click', function(event) {
                    map.setCenter();
                    map.setZoom(11);                       
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文