最后定位 最后更新时间: 2024年04月25日
在使用最后定位功能之前,请务必确保您已按照 工程配置 完成了所有必要的配置步骤,并已获取了相应的权限
提示
最后定位功能需近似位置、精确位置、网络访问权限
开始使用最后定位
1
导入所需模块
import { AMapLocationOption, AMapLocationReGeocodeLanguage, AMapLocationType, IAMapLocationListener } from '@amap/amap_lbs_location';
import geoLocationManager from '@ohos.geoLocationManager';
2
定位参数配置
let options: AMapLocationOption = {
locatingWithReGeocode: true, //定位是否返回逆地理信息
reGeocodeLanguage: AMapLocationReGeocodeLanguage.Chinese, //逆地址语言类型
isOffset: false //是否加偏
}
3
定位信息监听
let listener: IAMapLocationListener = {
onLocationChanged: (location) => {
// todo something
}, onLocationError: (error) => {
// todo something
}
};
4
开启最后定位
this.locationManger?.setLocationListener(AMapLocationType.Last, listener) //设置定位信息监听
this.locationManger?.setLocationOption(AMapLocationType.Last, options) //设置定位配置项
this.locationManger?.requestLastLocation() //最后定位