关于谷歌地图的一个简单问题 - 居中
每次我从 Google 地图嵌入 iframe 时,它都会将标记保留在中间。
即使有工具提示并且只是剪切工具提示数据,它也会这样做:
是否有 url 参数或其他东西可以使地图在工具提示上居中?
Every time I embed an iframe from Google Maps it keeps the marker in the middle.
And it does even if there's a tooltip and just CUTS the tooltip data:
Are there url parameters or something to center the map on the tooltip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么,如果您使用的是 API,那么您可以发出对 map.setCenter()。
但是,如果您像示例中那样包含内联地图,那么您只需更改初始起点。
您用来嵌入地图的 URL 是:
只需调整某些参数即可。
您需要调整的参数是
ll = 中心位置
、z = 缩放级别
和spn/sspn = 跨度/屏幕跨度
。令人惊讶的是,很难找到有关它们的信息,但此处提供了一些有关参数的详细信息。如果您只需要更改中心,请先尝试摆弄ll
参数。Well, if you are using the API, then you can issue a call to map.setCenter().
If however you are including the maps inline as in your example, then you just need to change the initial starting point.
The URL you are using to embed the map is:
Just a matter of adjusting certain parameters.
The parameters you need to adjust are
ll = center location
,z = zoom level
andspn/sspn = span / screen span
. Surprisingly awkward to find information on them, but there is some details on the parameters here. Try fiddling with thell
parameter first if you need to change just the centre.这对我有用:
HTML
JQUERY(甚至没有必要)
演示:http://tinker.io/9ace5
This works for me:
HTML
JQUERY (not even necessary)
Demo: http://tinker.io/9ace5