gpt4 book ai didi

javascript - navigator.geolocation.getCurrentPosition 在 firefox 和 chrome 之间返回不同?

转载 作者:行者123 更新时间:2023-11-29 20:13:56 25 4
gpt4 key购买 nike

我有一个片段

navigator.geolocation.getCurrentPosition(function(position) { 
// do somehthing
});

但返回的结果在 chrome 和 firefox 之间是不同的。 chrome 中的位置没有地址属性。

有人可以帮忙吗?

谢谢

最佳答案

看起来 Firefox 在位置界面方面有点领先。该标准目前不支持地址属性。

Geolocation API specifications:

The Position interface is the container for the geolocation information returned by this API. This version of the specification allows one attribute of type Coordinates and a timestamp. Future versions of the API may allow additional attributes that provide other information about this position (e.g. street addresses).

getCurrentPosition() 方法返回的位置对象包含一个带有纬度和经度的坐标属性。

navigator.geolocation.getCurrentPosition(function(position) { 
var lat = position.coords.latitude;
var lng = position.coords.longitude;

// do something with lat and lng
});

如果您需要街道地址,您将不得不使用地理编码服务(例如 Google Maps Geocoder ,即 Firefox is using to find the address )来查找地址。

关于javascript - navigator.geolocation.getCurrentPosition 在 firefox 和 chrome 之间返回不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8133314/

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