设置谷歌地图API的位置

发布于 2024-11-07 20:18:11 字数 431 浏览 3 评论 0原文

以下是 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=S173NE 的内容。

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=S173NE for example.

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

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

发布评论

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

评论(1

违心° 2024-11-14 20:18:11

加载 Maps API 时,这似乎是不可能的;使用 文档页面上显示的示例

var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);

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:

var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文