在元服务中如何获取用户当前所在位置的地址信息?

元服务中获取的location信息里面没有返回address,只能拿到经纬度。

而且经纬度逆解析成地址的api提示在元服务不支持。不知道怎么获取当前用户的地址信息。

阅读 772
1 个回答

可使用MapKit根据经纬度获取地址信息:

let requestInfo:geoLocationManager.CurrentLocationRequest = {'priority': geoLocationManager.LocationRequestPriority.FIRST_FIX, 'scenario': geoLocationManager.LocationRequestScenario.UNSET,'maxAccuracy': 0};
let locationChange = async (err: BusinessError, location:geoLocationManager.Location): Promise<void> => {
  if (err) {
    console.log('locationChanger: err=' + JSON.stringify(err));
  }
  if (location) {
    console.log('locationChanger: location=' + JSON.stringify(location));
    let position: mapCommon.LatLng = {
      latitude: location.latitude,
      longitude: location.longitude
    }
    try {
      const res = await site.nearbySearch({
        location: position
      });
      console.log(JSON.stringify(res))
    } catch (e) {
      console.log(e);
    }
  }
};

try {
  geoLocationManager.getCurrentLocation(requestInfo, locationChange);
} catch (err) {
  console.error(&#34;errCode:&#34; + (err as BusinessError).code + &#34;,errMessage:&#34; + (err as BusinessError).message);
}

参考链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references/hms-core-map-site-0000001704600486\#section6315894393

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进