可使用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("errCode:" + (err as BusinessError).code + ",errMessage:" + (err as BusinessError).message); }参考链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references/hms-core-map-site-0000001704600486\#section6315894393
可使用MapKit根据经纬度获取地址信息:
参考链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references/hms-core-map-site-0000001704600486\#section6315894393