1# 获取设备的位置信息开发指导
2
3## 场景概述
4
5开发者可以调用OpenHarmony位置相关接口,获取设备实时位置,或者最近的历史位置,以及监听设备的位置变化。
6
7对于位置敏感的应用业务,建议获取设备实时位置信息。如果不需要设备实时位置信息,并且希望尽可能的节省耗电,开发者可以考虑获取最近的历史位置。
8
9## 接口说明
10
11获取设备的位置信息所使用的接口如下,详细说明参见:[Location Kit](../../reference/apis-location-kit/js-apis-geoLocationManager.md)。
12
13本模块能力仅支持WGS-84坐标系。
14
15**表2** 获取设备的位置信息接口介绍
16
17| 接口名 | 功能描述 |
18| -------- | -------- |
19| [on(type: 'locationChange', request: LocationRequest | ContinuousLocationRequest, callback: Callback<Location>): void](../../reference/apis-location-kit/js-apis-geoLocationManager.md#geolocationmanageronlocationchange) | 开启位置变化订阅,并发起定位请求。 |
20| [off(type: 'locationChange', callback?: Callback<Location>): void](../../reference/apis-location-kit/js-apis-geoLocationManager.md#geolocationmanagerofflocationchange) | 关闭位置变化订阅,并删除对应的定位请求。 |
21| [getCurrentLocation(request: CurrentLocationRequest | SingleLocationRequest, callback: AsyncCallback<Location>): void](../../reference/apis-location-kit/js-apis-geoLocationManager.md#geolocationmanagergetcurrentlocation) | 获取当前位置,使用callback回调异步返回结果。|
22| [getCurrentLocation(request?: CurrentLocationRequest | SingleLocationRequest): Promise<Location>](../../reference/apis-location-kit/js-apis-geoLocationManager.md#geolocationmanagergetcurrentlocation-2) | 获取当前位置,使用Promise方式异步返回结果。|
23| [getLastLocation(): Location](../../reference/apis-location-kit/js-apis-geoLocationManager.md#geolocationmanagergetlastlocation) | 获取最近一次定位结果。 |
24| [isLocationEnabled(): boolean](../../reference/apis-location-kit/js-apis-geoLocationManager.md#geolocationmanagerislocationenabled) | 判断位置服务是否已经开启。 |
25
26## 开发步骤
27
281. 获取设备的位置信息,需要有位置权限,位置权限申请的方法和步骤见[申请位置权限开发指导](location-permission-guidelines.md)。
29
302. 导入geoLocationManager模块,所有与基础定位能力相关的功能API,都是通过该模块提供的。
31
32   ```ts
33   import { geoLocationManager } from '@kit.LocationKit';
34   ```
353. 调用获取位置接口之前需要先判断位置开关是否打开。
36   查询当前位置开关状态,返回结果为布尔值,true代表位置开关开启,false代表位置开关关闭,示例代码如下:
37
38   ```ts
39   import { geoLocationManager } from '@kit.LocationKit';
40   try {
41       let locationEnabled = geoLocationManager.isLocationEnabled();
42   } catch (err) {
43       console.error("errCode:" + err.code + ", message:"  + err.message);
44   }
45   ```
46   如果位置开关未开启,可以拉起全局开关设置弹框,引导用户打开位置开关,具体可参考[拉起全局开关设置弹框](../../reference/apis-ability-kit/js-apis-abilityAccessCtrl.md#requestglobalswitch12)
47
484. 单次获取当前设备位置。多用于查看当前位置、签到打卡、服务推荐等场景。
49   - 方式一:获取系统缓存的最新位置。<br/>
50      如果系统当前没有缓存位置会返回错误码。<br/>
51      推荐优先使用该接口获取位置,可以减少系统功耗。<br/>
52      如果对位置的新鲜度比较敏感,可以先获取缓存位置,将位置中的时间戳与当前时间对比,若新鲜度不满足预期可以使用方式二获取位置。<br/>
53
54      ```ts
55      import { geoLocationManager } from '@kit.LocationKit';
56      import { BusinessError } from '@kit.BasicServicesKit'
57      try {
58          let location = geoLocationManager.getLastLocation();
59      } catch (err) {
60          console.error("errCode:" + JSON.stringify(err));
61      }
62      ```
63
64   - 方式二:获取当前位置。<br/>
65      首先要实例化[SingleLocationRequest](../../reference/apis-location-kit/js-apis-geoLocationManager.md#singlelocationrequest12)对象,用于告知系统该向应用提供何种类型的位置服务,以及单次定位超时时间。<br/>
66      - 设置LocatingPriority:<br/>
67         如果对位置的返回精度要求较高,建议LocatingPriority参数优先选择PRIORITY_ACCURACY,会将一段时间内精度较好的结果返回给应用。<br/>
68         如果对定位速度要求较高,建议LocatingPriority参数选择PRIORITY_LOCATING_SPEED,会将最先拿到的定位结果返回给应用。<br/>
69         两种定位策略均会同时使用GNSS定位和网络定位技术,以便在室内和户外场景下均可以获取到位置结果,对设备的硬件资源消耗较大,功耗也较大。<br/>
70      - 设置locatingTimeoutMs:<br/>
71         因为设备环境、设备所处状态、系统功耗管控策略等的影响,定位返回的时延会有较大波动,建议把单次定位超时时间设置为10秒。<br/>
72
73      以快速定位策略(PRIORITY_LOCATING_SPEED)为例,调用方式如下:<br/>
74
75      ```ts
76      import { geoLocationManager } from '@kit.LocationKit';
77      import { BusinessError } from '@kit.BasicServicesKit'
78      let request: geoLocationManager.SingleLocationRequest = {
79         'locatingPriority': geoLocationManager.LocatingPriority.PRIORITY_LOCATING_SPEED,
80         'locatingTimeoutMs': 10000
81      }
82      try {
83         geoLocationManager.getCurrentLocation(request).then((result) => { // 调用getCurrentLocation获取当前设备位置,通过promise接收上报的位置
84            console.log('current location: ' + JSON.stringify(result));
85         })
86         .catch((error:BusinessError) => { // 接收上报的错误码
87            console.error('promise, getCurrentLocation: error=' + JSON.stringify(error));
88         });
89       } catch (err) {
90         console.error("errCode:" + JSON.stringify(err));
91       }
92      ```
93   通过本模块获取到的坐标均为WGS-84坐标系坐标点,如需使用其它坐标系类型的坐标点,请进行坐标系转换后再使用。
94
95   <!--RP1-->   可使用三方地图提供的SDK能力进行坐标系转换。<!--RP1End-->
96
975. 持续定位。多用于导航、运动轨迹、出行等场景。</br>
98   首先要实例化[ContinuousLocationRequest](../../reference/apis-location-kit/js-apis-geoLocationManager.md#continuouslocationrequest12)对象,用于告知系统该向应用提供何种类型的位置服务,以及位置结果上报的频率。<br/>
99   - 设置locationScenario:<br/>
100      建议locationScenario参数优先根据应用的使用场景进行设置,该参数枚举值定义参见[UserActivityScenario](../../reference/apis-location-kit/js-apis-geoLocationManager.md#useractivityscenario12),例如地图在导航时使用NAVIGATION参数,可以持续在室内和室外场景获取位置用于导航。</br>
101   - 设置interval:<br/>
102      表示上报位置信息的时间间隔,单位是秒,默认值为1秒。如果对位置上报时间间隔无特殊要求,可以不填写该字段。
103
104   以地图导航场景为例,调用方式如下:
105
106   ```ts
107   import { geoLocationManager } from '@kit.LocationKit';
108   let request: geoLocationManager.ContinuousLocationRequest= {
109      'interval': 1,
110      'locationScenario': geoLocationManager.UserActivityScenario.NAVIGATION
111   }
112   let locationCallback = (location:geoLocationManager.Location):void => {
113      console.log('locationCallback: data: ' + JSON.stringify(location));
114   };
115   try {
116      geoLocationManager.on('locationChange', request, locationCallback);
117   } catch (err) {
118      console.error("errCode:" + JSON.stringify(err));
119   }
120   ```
121   如果不主动结束定位可能导致设备功耗高,耗电快;建议在不需要获取定位信息时及时结束定位。
122   ```ts
123   geoLocationManager.off('locationChange', locationCallback);
124   ```