如果我有该区域的纬度和经度坐标,如何从离子2中的Google Map中获取城市名称?
我在互联网上进行了搜索,但找不到解决方案。
您可以使用地理座
import { Geocoder, GeocoderRequest } from 'ionic-native';
let req: GeocoderRequest = { position: location }
Geocoder.geocode(req).then((results)=>{
})
您可以通过此链接找到有关位置的所有需求。您可以使用以下方式使用地理API。https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&amkekey=your_api_key
只需由您拥有的latlng替换为您的API密钥,然后在Google控制台上找到的API键即可。
提醒:要使用地理编码API,您必须包含一个带有所有API请求的API密钥,并且必须对每个项目启用帐单
这里有更多信息。https://developers.google.com/maps/documentation/geolocation/intrococation/intro