harmony 鸿蒙Location
Location
Overview
Provides APIs for querying the location switch status, and starting and stopping location.
Since: 13
Summary
File
Name | Description |
---|---|
oh_location.h | Defines APIs for querying the location switch status, and starting and stopping location. |
oh_location_type.h | Defines common attributes of the location service. |
Structs
Name | Description |
---|---|
struct Location_BasicInfo | Struct for the basic location information. |
Types
Name | Description |
---|---|
typedef enum Location_ResultCode Location_ResultCode | Enumerates error codes of the location service. |
typedef enum Location_UseScene Location_UseScene | Enumerates use scenes in a location request. |
typedef enum Location_PowerConsumptionScene Location_PowerConsumptionScene | Enumerates power consumption scenarios in a location request. |
typedef enum Location_SourceType Location_SourceType | Defines the source of location information. |
typedef struct Location_BasicInfo Location_BasicInfo | Defines the struct for the basic location information. |
typedef struct Location_Info Location_Info | Defines the struct for the location information. |
typedef void(* Location_InfoCallback) (Location_Info *location, void *userData) | Defines the callback for receiving reported location information. |
typedef struct Location_RequestConfig Location_RequestConfig | Defines the struct for the location request configuration. |
Enums
Name | Description |
---|---|
Location_ResultCode { LOCATION_SUCCESS = 0, LOCATION_PERMISSION_DENIED = 201, LOCATION_INVALID_PARAM = 401, LOCATION_NOT_SUPPORTED = 801, LOCATION_SERVICE_UNAVAILABLE = 3301000, LOCATION_SWITCH_OFF = 3301100 } |
Enumerates error codes of the location service. |
Location_UseScene { LOCATION_USE_SCENE_NAVIGATION = 0x0401, LOCATION_USE_SCENE_SPORT = 0x0402, LOCATION_USE_SCENE_TRANSPORT = 0x0403, LOCATION_USE_SCENE_DAILY_LIFE_SERVICE = 0x0404 } | Enumerates use scenes in a location request. |
Location_PowerConsumptionScene { LOCATION_HIGH_POWER_CONSUMPTION = 0x0601, LOCATION_LOW_POWER_CONSUMPTION = 0x0602, LOCATION_NO_POWER_CONSUMPTION = 0x0603 } | Enumerates power consumption scenarios in a location request. |
Location_SourceType { LOCATION_SOURCE_TYPE_GNSS = 1, LOCATION_SOURCE_TYPE_NETWORK = 2, LOCATION_SOURCE_TYPE_INDOOR = 3, LOCATION_SOURCE_TYPE_RTK = 4 } | Defines the source of location information. |
Functions
Name | Description |
---|---|
Location_ResultCode OH_Location_IsLocatingEnabled (bool *enabled) | Checks whether the location switch is enabled. |
Location_ResultCode OH_Location_StartLocating (const Location_RequestConfig *requestConfig) | Starts locating and subscribes to location changes. |
Location_ResultCode OH_Location_StopLocating (const Location_RequestConfig *requestConfig) | Stops locating and unsubscribes from location changes. |
Location_BasicInfo OH_LocationInfo_GetBasicInfo (Location_Info *location) | Obtains basic location information. |
Location_ResultCode OH_LocationInfo_GetAdditionalInfo (Location_Info *location, char *additionalInfo, uint32_t length) | Obtains the additional information in the location information. |
Location_RequestConfig * OH_Location_CreateRequestConfig (void) | Creates a Location_RequestConfig instance. |
void OH_Location_DestroyRequestConfig (Location_RequestConfig *requestConfig) | Destroys the Location_RequestConfig instance and reclaims the memory. |
void OH_LocationRequestConfig_SetUseScene (Location_RequestConfig *requestConfig, Location_UseScene useScene) | Sets the use scene in the location request configuration. useScene takes precedence over powerConsumptionScene in Location_RequestConfig. If useScene is set, powerConsumptionScene is invalid. Otherwise, powerConsumptionScene takes effect. If neither of the two parameters is set, useScene is set to LOCATION_USE_SCENE_DAILY_LIFE_SERVICE by default, and powerConsumptionScene is invalid. |
void OH_LocationRequestConfig_SetPowerConsumptionScene (Location_RequestConfig *requestConfig, Location_PowerConsumptionScene powerConsumptionScene) | Sets the power consumption scene in the location request configuration. |
void OH_LocationRequestConfig_SetInterval (Location_RequestConfig *requestConfig, int interval) | Sets the location reporting interval in the location request configuration. |
void OH_LocationRequestConfig_SetCallback (Location_RequestConfig *requestConfig, Location_InfoCallback callback, void *userData) | Sets the callback function. |
Type Description
Location_BasicInfo
typedef struct Location_BasicInfo Location_BasicInfo
Description Defines the struct for the basic location information.
Since: 13
Location_Info
typedef struct Location_Info Location_Info
Description Defines the struct for the location information.
Since: 13
Location_InfoCallback
typedef void(* Location_InfoCallback) (Location_Info *location, void *userData)
Description Defines the callback for receiving reported location information.
Since: 13
Parameters
Name | Description |
---|---|
location | Pointer to the Location_Info instance, which carries the latest location information. The memory occupied by the instance will be reclaimed when Location_InfoCallback is complete. Before calling this API, call APIs such as OH_LocationInfo_GetBasicInfo to obtain the location information. |
userData | Pointer to the userData struct or object. This parameter is passed in through OH_LocationRequestConfig_SetCallback. |
Location_PowerConsumptionScene
typedef enum Location_PowerConsumptionScene Location_PowerConsumptionScene
Description Enumerates power consumption scenarios in a location request.
Since: 13
Location_RequestConfig
typedef struct Location_RequestConfig Location_RequestConfig
Description Defines the struct for the location request configuration.
Since: 13
Location_ResultCode
typedef enum Location_ResultCode Location_ResultCode
Description Enumerates error codes of the location service.
Since: 13
Location_SourceType
typedef enum Location_SourceType Location_SourceType
Description Defines the source of location information.
Since: 13
Location_UseScene
typedef enum Location_UseScene Location_UseScene
Description Enumerates use scenes in a location request.
Since: 13
Enum Description
Location_PowerConsumptionScene
enum Location_PowerConsumptionScene
Description Enumerates power consumption scenarios in a location request.
Since: 13
Value | Description |
---|---|
LOCATION_HIGH_POWER_CONSUMPTION | High power consumption. The mode mainly uses the GNSS positioning technology. The system uses the network positioning technology as an alternative to provide the location service for your application until the GNSS can provide stable location results. During the continuous location process, the network positioning technology is used if the GNSS location result cannot be obtained within 30 seconds. This policy can lead to significant hardware resource consumption and power consumption. |
LOCATION_LOW_POWER_CONSUMPTION | Low power consumption. This mode is applicable when your application only needs the approximate location in scenarios such as when the user is browsing news, shopping online, and ordering food. It mainly uses the network positioning technology and therefore the power consumption is relatively low. |
LOCATION_NO_POWER_CONSUMPTION | No power consumption. Your application does not proactively start the location service. When responding to another application requesting the same location service, the system marks a copy of the location result to your application. |
Location_ResultCode
enum Location_ResultCode
Description Enumerates error codes of the location service.
Since: 13
Value | Description |
---|---|
LOCATION_SUCCESS | Operation succeeded. |
LOCATION_PERMISSION_DENIED | Permission verification has failed. |
LOCATION_INVALID_PARAM | Parameter error. Possible causes: 1. The input parameter is a null pointer. 2. The parameter value is out of the value range. |
LOCATION_NOT_SUPPORTED | Function not supported due to limited device capabilities. |
LOCATION_SERVICE_UNAVAILABLE | Location service unavailable. |
LOCATION_SWITCH_OFF | Location switch disabled. |
Location_SourceType
enum Location_SourceType
Description Defines the source of location information.
Since: 13
Value | Description |
---|---|
LOCATION_SOURCE_TYPE_GNSS | GNSS positioning technology. |
LOCATION_SOURCE_TYPE_NETWORK | Network positioning technology. |
LOCATION_SOURCE_TYPE_INDOOR | Indoor high-precision positioning technology. |
LOCATION_SOURCE_TYPE_RTK | Outdoor high-precision positioning technology. |
Location_UseScene
enum Location_UseScene
Description Enumerates use scenes in a location request.
Since: 13
Value | Description |
---|---|
LOCATION_USE_SCENE_NAVIGATION | Navigation scenario. This option is applicable when your application needs to obtain the real-time location of a mobile device outdoors, such as navigation for driving or walking. This option mainly uses the GNSS positioning technology and therefore the power consumption is relatively high. |
LOCATION_USE_SCENE_SPORT | Sport scenario. This option is applicable when your application needs to record user trajectories, for example, the track recording function of sports applications. This option mainly uses the GNSS positioning technology and therefore the power consumption is relatively high. |
LOCATION_USE_SCENE_TRANSPORT | Travel scenario. This option is applicable to user travel scenarios, such as taxi hailing and public transportation. This option mainly uses the GNSS positioning technology and therefore the power consumption is relatively high. |
LOCATION_USE_SCENE_DAILY_LIFE_SERVICE | Daily life services. This option is applicable when your application only needs the approximate location in scenarios such as when the user is browsing news, shopping online, and ordering food. It mainly uses the network positioning technology and therefore the power consumption is relatively low. |
Function Description
OH_Location_CreateRequestConfig()
Location_RequestConfig* OH_Location_CreateRequestConfig (void )
Description Creates a Location_RequestConfig instance.
Since: 13
Returns
Pointer to the Location_RequestConfig instance.
If NULL is returned, the operation has failed. The probable cause is that the application address space is full.
OH_Location_DestroyRequestConfig()
void OH_Location_DestroyRequestConfig (Location_RequestConfig * requestConfig)
Description Destroys the Location_RequestConfig instance and reclaims the memory.
Since: 13
Parameters
Name | Description |
---|---|
requestConfig | Pointer to the Location_RequestConfig instance. The instance is created by OH_Location_CreateRequestConfig. |
OH_Location_IsLocatingEnabled()
Location_ResultCode OH_Location_IsLocatingEnabled (bool * enabled)
Description Checks whether the location switch is enabled.
Since: 13
Parameters
Name | Description |
---|---|
enabled | Pointer of the bool type, which is used to receive the location switch status. If the value is true, the location switch is enabled. If the value is false, the location switch is disabled. A non-null pointer must be passed in. Otherwise, an error is returned. |
Returns
Operation result. For details, see Location_ResultCode.
LOCAION_SUCCESS: The location switch status is successfully queried.
LOCATION_INVALID_PARAM: The input parameter is a null pointer.
LOCATION_SERVICE_UNAVAILABLE: The location switch status fails to be queried because the location service is abnormal.
OH_Location_StartLocating()
Location_ResultCode OH_Location_StartLocating (const Location_RequestConfig * requestConfig)
Description Starts locating and subscribes to location changes.
Since: 13
Parameters
Name | Description |
---|---|
requestConfig | Pointer to the Location_RequestConfig instance. This parameter is used to specify the location scene and location reporting interval. For details, see Location_RequestConfig. You can use OH_Location_CreateRequ·estConfig to create a Location_RequestConfig instance. |
Returns
Operation result. For details, see Location_ResultCode.
LOCAION_SUCCESS: The location function is started successfully.
LOCATION_INVALID_PARAM: The input parameter requestConfig is a null pointer.
LOCATION_PERMISSION_DENIED: Permission verification has failed.
LOCATION_NOT_SUPPORTED: The device does not support the location function.
LOCATION_SERVICE_UNAVAILABLE: The location service is abnormal.
LOCATION_SWITCH_OFF: The location function fails to be started because the location switch is disabled.
Required Permissions
ohos.permission.APPROXIMATELY_LOCATION
OH_Location_StopLocating()
Location_ResultCode OH_Location_StopLocating (const Location_RequestConfig * requestConfig)
Description Stops locating and unsubscribes from location changes.
Since: 13
Parameters
Name | Description |
---|---|
requestConfig | Pointer to the Location_RequestConfig instance. This parameter must be the same as the pointer to requestConfig in OH_Location_StartLocating. For details, see Location_RequestConfig. A non-null pointer must be passed in. Otherwise, an error is returned. |
Returns
Operation result. For details, see Location_ResultCode.
LOCAION_SUCCESS: The location function is stopped successfully.
LOCATION_INVALID_PARAM: The input parameter is a null pointer or is different from the requestConfig pointer of OH_Location_StartLocating.
LOCATION_PERMISSION_DENIED: Permission verification has failed.
LOCATION_NOT_SUPPORTED: The device does not support the location function.
LOCATION_SERVICE_UNAVAILABLE: The location service is abnormal.
LOCATION_SWITCH_OFF: The location switch is disabled.
Required Permissions
ohos.permission.APPROXIMATELY_LOCATION
OH_LocationInfo_GetAdditionalInfo()
Location_ResultCode OH_LocationInfo_GetAdditionalInfo (Location_Info * location, char * additionalInfo, uint32_t length )
Description Obtains the additional information in the location information.
Since: 13
Parameters
Name | Description |
---|---|
location | Pointer to the Location_Info instance. A non-null pointer needs to be passed in. This pointer can be obtained from Location_InfoCallback. |
additionalInfo | Non-null pointer of the char type. This variable is used to store the additional location information in JSON format. The pointer and the corresponding memory are created by the caller. It is recommended that the memory be greater than or equal to 256 bytes. If a null pointer is passed in, an error code is returned. |
length | Memory size of additionalInfo. |
Returns
Operation result. For details, see Location_ResultCode.
LOCAION_SUCCESS: The additional location information is successfully obtained.
LOCATION_INVALID_PARAM 1. The input parameter location or additionalInfo is a null pointer.
- The value of the input parameter length is too small, that is, the memory size of additionalInfo is too small, which is unable to save the complete additional information.
OH_LocationInfo_GetBasicInfo()
Location_BasicInfo OH_LocationInfo_GetBasicInfo (Location_Info * location)
Description Obtains basic location information.
Since: 13
Parameters
Name | Description |
---|---|
location | Pointer to the Location_Info instance. A non-null pointer needs to be passed in. This pointer can be obtained from Location_InfoCallback. |
Returns
Struct for the basic location information. For details, see Location_BasicInfo.
OH_LocationRequestConfig_SetCallback()
void OH_LocationRequestConfig_SetCallback (Location_RequestConfig * requestConfig, Location_InfoCallback callback, void * userData )
Description Sets the callback function.
Since: 13
Parameters
Name | Description |
---|---|
requestConfig | Pointer to the Location_RequestConfig instance. The instance is created by OH_Location_CreateRequestConfig. |
callback | Pointer to the callback function, which is used to receive location information changes. For details, see Location_InfoCallback. |
userData | Pointer to the userData instance. This pointer is returned to the caller as an input parameter when the callback function is executed. |
OH_LocationRequestConfig_SetInterval()
void OH_LocationRequestConfig_SetInterval (Location_RequestConfig * requestConfig, int interval )
Description Sets the location reporting interval in the location request configuration.
Since: 13
Parameters
Name | Description |
---|---|
requestConfig | Pointer to the Location_RequestConfig instance. The instance is created by OH_Location_CreateRequestConfig. |
interval | Location reporting interval, in seconds. The value must be greater than or equal to 1. The default value is 1. |
OH_LocationRequestConfig_SetPowerConsumptionScene()
void OH_LocationRequestConfig_SetPowerConsumptionScene (Location_RequestConfig * requestConfig, Location_PowerConsumptionScene powerConsumptionScene )
Description Sets the power consumption scene in the location request configuration.
Since: 13
Parameters
Name | Description |
---|---|
requestConfig | Pointer to the Location_RequestConfig instance. The instance is created by OH_Location_CreateRequestConfig. |
powerConsumptionScene | Power consumption scene in the location request. The default value is LOCATION_LOW_POWER_CONSUMPTION. For details, see Location_PowerConsumptionScene. |
OH_LocationRequestConfig_SetUseScene()
void OH_LocationRequestConfig_SetUseScene (Location_RequestConfig * requestConfig, Location_UseScene useScene )
Description Sets the use scene in the location request configuration.
useScene takes precedence over powerConsumptionScene in Location_RequestConfig.
If useScene is set, powerConsumptionScene is invalid.
Otherwise, powerConsumptionScene takes effect.
If neither of the two parameters is set, useScene is set to LOCATION_USE_SCENE_DAILY_LIFE_SERVICE by default,
and powerConsumptionScene is invalid.
Since: 13
Parameters
Name | Description |
---|---|
requestConfig | Pointer to the Location_RequestConfig instance. The instance is created by OH_Location_CreateRequestConfig. |
useScene | Use scene in the location request. The default value is LOCATION_USE_SCENE_DAILY_LIFE_SERVICE. For details, see Location_UseScene. |
你可能感兴趣的鸿蒙文章
harmony 鸿蒙Location Kit Error Codes
harmony 鸿蒙@ohos.app.ability.FenceExtensionAbility (FenceExtensionAbility)
harmony 鸿蒙@ohos.app.ability.FenceExtensionContext (FenceExtensionContext) (System API)
harmony 鸿蒙@ohos.app.ability.FenceExtensionContext (FenceExtensionContext)
harmony 鸿蒙@ohos.geoLocationManager (Geolocation Manager) (System API)
harmony 鸿蒙@ohos.geoLocationManager (Geolocation Manager)
- 所属分类: 后端技术
- 本文标签:
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦