设置谷歌地图API的位置
以下是 google 地图 API 的 Jquery 实现。
我们有一个工作方向系统,但我希望地图从当前正在查看的房产的邮政编码位置开始。如何告诉地图从哪里开始关注?目前每次都是华盛顿特区。
<script src="http://maps.google.com/maps?file=api&v=2&sensor=true&language=en&key=ABQIAAAAGcPGjX-izBm12MfKVJQDMxSFrT_-MTFIAEBcsBZKaMY6Nh6WHBSpGsVLM4GSyvhPjinVSeDePWTZww" type="text/javascript"></script>
我认为需要一个参数。例如,类似 &location=S173N
E 的内容。
The following is a Jquery implementation of the google map API.
We have a working direction system but I want to have the map start in the position of the post code of the current property being viewed. How do you tell the map where to start its focus from. At the moment it is Washington DC every time.
<script src="http://maps.google.com/maps?file=api&v=2&sensor=true&language=en&key=ABQIAAAAGcPGjX-izBm12MfKVJQDMxSFrT_-MTFIAEBcsBZKaMY6Nh6WHBSpGsVLM4GSyvhPjinVSeDePWTZww" type="text/javascript"></script>
I assume there is a parameter needed. Something like &location=S173N
E for example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
加载 Maps API 时,这似乎是不可能的;使用 文档页面上显示的示例:
It doesn't look like this is possible when loading the Maps API; you must do it via JavaScript once the map has been loaded using something like the example shown on the documentation page: