Google 地图 API 在加载 Javascript 上查找我的位置

发布于 2024-11-26 03:55:58 字数 186 浏览 0 评论 0原文

我通过 javascript 代码获得了 Google 地图和地点 API。 页面加载时,它将自动转到代码中定义的纬度。有没有办法让它自动转到它认为您所在的位置,而无需按钮或搜索字段?

目前使用此代码:

google.maps.LatLng(37.783259, -122.402708);

I have got a Google Maps and Places API via javascript code.
When the page loads it will automatically go to the Latitude defined in the code. Is there a way to have it AUTOMATICALLY go to where it thinks your location is, without having a button or search field?

Using this code currently:

google.maps.LatLng(37.783259, -122.402708);

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

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

发布评论

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

评论(2

美男兮 2024-12-03 03:55:58

您是否尝试过在调用 API 时设置 sensor=true

来源

Have you tried setting sensor=true when calling the API?

Source

丑丑阿 2024-12-03 03:55:58
 if(google.loader.ClientLocation)
    {
visitor_lat = google.loader.ClientLocation.latitude;
      visitor_lon = google.loader.ClientLocation.longitude;
};

new google.maps.LatLng(visitor_lat, visitor_lon);
 if(google.loader.ClientLocation)
    {
visitor_lat = google.loader.ClientLocation.latitude;
      visitor_lon = google.loader.ClientLocation.longitude;
};

new google.maps.LatLng(visitor_lat, visitor_lon);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文