单击即可缩放多个级别 - Google 地图
这就是我想要实现的目标 - 当用户单击(单击)地图上的任意位置时,它会放大到预先指定的缩放级别。例如,无论当前的缩放级别如何,单击某处都会以缩放级别 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
伪教程:
click
事件。map.setCenter()
。map.setZoom(11)
。A pseudo tutorial:
click
event for your map.map.setCenter()
on your lat/lng click location.map.setZoom(11)
on click.