interface_sdk-js/api/@system.geolocation.d.ts
wangcaoyu1 c115ba985c 去除kit标签中间空格,添加kits文件kit标签
Signed-off-by: wangcaoyu1 <wangcaoyu@huawei.com>
2024-01-08 15:26:47 +08:00

210 lines
5.3 KiB
TypeScript

/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @kit LocationKit
*/
/**
* @syscap SystemCapability.Location.Location.Lite
* @deprecated since 9
* @useinstead ohos.geoLocationManager/geoLocationManager.Location
*/
export interface GeolocationResponse {
/**
* Longitude.
* @since 3
*/
longitude: number;
/**
* Latitude.
* @since 3
*/
latitude: number;
/**
* Altitude.
* @since 3
*/
altitude: number;
/**
* Location accuracy.
* @since 3
*/
accuracy: number;
/**
* Time when the location is obtained.
* @since 3
*/
time: number;
}
/**
* @syscap SystemCapability.Location.Location.Lite
* @permission ohos.permission.LOCATION
* @deprecated since 9
* @useinstead ohos.geoLocationManager/geoLocationManager.CurrentLocationRequest
*/
export interface GetLocationOption {
/**
* Timeout duration, in milliseconds.
* For the rich device, the default value is 30000.
* For the lite wearable device, the default value is 180000.
* The timeout duration is necessary in case no result is returned if the request to obtain the geographic location is rejected for the lack of the required permission, weak positioning signal, or incorrect location settings. After the timeout duration expires, the fail function will be called.
* The value is a 32-digit positive integer.
* If the value set is less than or equal to 0, the default value will be used.
* @since 3
*/
timeout?: number;
/**
* Coordinate system type. Available types can be obtained using getSupportedCoordTypes.
* The default type is wgs84.
* @since 3
*/
coordType?: string;
/**
* Called when the geographic location is obtained.
* @since 3
*/
success?: (data: GeolocationResponse) => void;
/**
* Called when the location types fail to be obtained
* @since 3
*/
fail?: (data: string, code: number) => void;
/**
* Called when the execution is completed.
* @since 3
*/
complete?: () => void;
}
/**
* @syscap SystemCapability.Location.Location.Lite
* @deprecated since 9
*/
export interface GetLocationTypeResponse {
/**
* @since 3
*/
types: Array<string>;
}
/**
* @syscap SystemCapability.Location.Location.Lite
* @deprecated since 9
*/
export interface GetLocationTypeOption {
/**
* Called when the location types are obtained.
* @since 3
*/
success?: (data: GetLocationTypeResponse) => void;
/**
* Called when the location types fail to be obtained.
* @since 3
*/
fail?: (data: string, code: number) => void;
/**
* Called when the execution is completed.
* @since 3
*/
complete?: () => void;
}
/**
* @syscap SystemCapability.Location.Location.Lite
* @permission ohos.permission.LOCATION
* @deprecated since 9
* @useinstead ohos.geoLocationManager/geoLocationManager.LocationRequest
*/
export interface SubscribeLocationOption {
/**
* Coordinate system type. Available types can be obtained using getSupportedCoordTypes.
* The default type is wgs84.
* @since 3
*/
coordType?: string;
/**
* Called whenever the geographical location changes.
* @since 3
*/
success: (data: GeolocationResponse) => void;
/**
* Called when the listening fails.
* @since 3
*/
fail?: (data: string, code: number) => void;
}
/**
* @syscap SystemCapability.Location.Location.Lite
* @deprecated since 9
* @useinstead ohos.geoLocationManager/geoLocationManager
*/
export default class Geolocation {
/**
* Obtains the geographic location.
* @permission ohos.permission.LOCATION
* @param options Options.
* @deprecated since 9
* @useinstead ohos.geoLocationManager/geoLocationManager.getCurrentLocation
*/
static getLocation(options?: GetLocationOption): void;
/**
* Obtains the location types supported by the system.
* @param options Options.
* @deprecated since 9
*/
static getLocationType(options?: GetLocationTypeOption): void;
/**
* Listens to the geographical location. If this method is called multiple times, the last call takes effect.
* @permission ohos.permission.LOCATION
* @param options Options.
* @deprecated since 9
* @useinstead ohos.geoLocationManager/geoLocationManager.on#event:locationChange
*/
static subscribe(options: SubscribeLocationOption): void;
/**
* Cancels listening to the geographical location.
* @permission ohos.permission.LOCATION
* @deprecated since 9
* @useinstead ohos.geoLocationManager/geoLocationManager.off#event:locationChange
*/
static unsubscribe(): void;
/**
* Obtains the supported coordinate system types.
* @returns A string array of the supported coordinate system types, for example, ['wgs84'].
* @deprecated since 9
*/
static getSupportedCoordTypes(): Array<string>;
}