gpt4 book ai didi

javascript - 如何使用 HTML5 地理定位或 Google API 获取地址经纬度?

转载 作者:搜寻专家 更新时间:2023-10-31 21:59:41 30 4
gpt4 key购买 nike

我对一个问题感到困惑,即我可以从 Facebook 获取用户的位置,我所需要的只是获取该位置的纬度和经度,但我仍然找不到解决方案。

如果我可以使用 HTML5 地理定位或任何 Google API 获取该纬度和经度,将会有所帮助。解决方案是什么?

最佳答案

if (navigator.geolocation) {    navigator.geolocation.getCurrentPosition(successFunction, errorFunction);} else {    alert('It seems like Geolocation, which is required for this page, is not enabled in your browser. Please use a browser which supports it.');}

If the browser supports geolocation and if getCurrentPosition runs successfully, then a success function is called. And then in the function successFunction

have


function successFunction(position) {
var lat = position.coords.latitude;
var long = position.coords.longitude;
console.log('Your latitude is :'+lat+' and longitude is '+long);
}

在此处阅读有关 Geolocation API 的更多信息

关于javascript - 如何使用 HTML5 地理定位或 Google API 获取地址经纬度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11667838/

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