gpt4 book ai didi

javascript - 从网络浏览器获取 GPS 位置

转载 作者:IT老高 更新时间:2023-10-28 13:17:15 25 4
gpt4 key购买 nike

我正在开发一个基于移动的网站,我已经集成了谷歌地图,我需要动态填写谷歌地图的“发件人”字段。

是否可以从网络浏览器获取 GPS 位置并动态填写在 Google map 的“发件人”字段中?

最佳答案

如果您使用 Geolocation API ,就像使用以下代码一样简单。

navigator.geolocation.getCurrentPosition(function(location) {
console.log(location.coords.latitude);
console.log(location.coords.longitude);
console.log(location.coords.accuracy);
});

您也可以使用 Google's Client Location API .

此问题已在 Is it possible to detect a mobile browser's GPS location? 中讨论过和 Get position data from mobile browser .您可以在那里找到更多信息。

关于javascript - 从网络浏览器获取 GPS 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2577305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com