从反应本机中的经纬度获取位置名称

Get location name from the latitude and longitude in react-native

目前我在 react-native 中获取纬度和经度形式 navigator.geolocation.watchPosition(success,error,{})。 但我想显示用户位置。我如何在不使用 google 地理编码 API 的情况下做到这一点?

您正在寻找的可能是反向地理编码服务(即将 lonlat 转换为街道地址)。如果是这样,您可以使用 Google Maps Reverse Geocoding

可能与

重复