-
Notifications
You must be signed in to change notification settings - Fork 0
/
system.geolocation.d.ts
193 lines (178 loc) · 5.13 KB
/
system.geolocation.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/// <reference path="./types.d.ts"/>
/**
* 地理位置 geolocation
* @后台运行限制 manifest 中申请后可用。后台运行详细用法参见后台运行 脚本。
* @see https://doc.quickapp.cn/features/system/geolocation.html
*/
declare module '@system.geolocation' {
interface Geolocation {
/**
* 获取地理位置
* @example
* ```js
* geolocation.getLocation({
* success: function(data) {
* console.log(
* `handling success: longitude = ${data.longitude}, latitude = ${
* data.latitude
* }`
* )
* },
* fail: function(data, code) {
* console.log(`handling fail, code = ${code}`)
* }
* })
* ```
*/
getLocation(OBJECT: GetLocationOBJECT): any;
/**
* 获取系统当前支持的定位类型
* @since 1010
* @example
* ```js
* geolocation.getLocationType({
* success: function(data) {
* console.log(`handling success: locationType = ${data.types}`)
* },
* fail: function(data, code) {
* console.log(`handling fail, code = ${code}`)
* }
* })
* ```
*/
getLocationType(OBJECT: GetLocationTypeOBJECT): any;
/**
* 监听地理位置。如果多次调用,仅最后一次调用生效
* @example
* ```js
* geolocation.subscribe({
* callback: function(data) {
* console.log(
* `handling success: longitude = ${data.longitude}, latitude = ${
* data.latitude
* }`
* )
* },
* fail: function(data, code) {
* console.log(`handling fail, code = ${code}`)
* }
* })
* ```
*/
subscribe(OBJECT: SubscribeOBJECT): any;
/**
* 取消监听地理位置
* @example
* ```js
* geolocation.unsubscribe()
* ```
*/
unsubscribe(): any;
/**
* 获取支持的坐标系类型
* @since 1050
* @example
* ```js
* var types = geolocation.getSupportedCoordTypes()
* ```
*/
getSupportedCoordTypes(): any;
}
/**
*
* @param reserved 是否持久化订阅,默认为 false。机制:设置为 true,页面跳转,不会自动取消订阅,需手动取消订阅[可选] 1050+
* @param coordType 坐标系类型,可选值可通过 getSupportedCoordTypes 获取,默认为 wgs84[可选] 1050+
* @param callback 每次位置信息发生变化,都会被回调
* @param fail 失败回调,原因可能是用户拒绝[可选]
*/
interface SubscribeOBJECT {
reserved?: Boolean;
coordType?: String;
callback: SubscribeOBJECTCallbackCB;
fail?: Function;
}
/**
* 每次位置信息发生变化,都会被回调
*/
type SubscribeOBJECTCallbackCB = (
callbackArg: SubscribeCallbackCallbackArg
) => any;
/**
* 每次位置信息发生变化,都会被回调
* @param longitude 经度[可选]
* @param latitude 纬度[可选]
* @param accuracy 精确度[可选] 1040+
* @param time 时间[可选] 1040+
*/
interface SubscribeCallbackCallbackArg {
longitude?: Number;
latitude?: Number;
accuracy?: Number;
time?: Number;
}
/**
*
* @param success 成功回调
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetLocationTypeOBJECT {
success: GetLocationTypeOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetLocationTypeOBJECTSuccessCB = (
successArg: GetLocationTypeSuccessSuccessArg
) => any;
/**
* 成功回调
* @param types 支持的类型['gps','network'][可选]
*/
interface GetLocationTypeSuccessSuccessArg {
types?: Array<any>;
}
/**
*
* @param timeout 设置超时时间,单位是 ms,默认值为 30000。在权限被系统拒绝或者定位设置不当的情况下,有可能永远不能返回结果,因而需要设置超时。超时后会使用 fail 回调[可选]
* @param coordType 坐标系类型,可选值可通过 getSupportedCoordTypes 获取,默认为 wgs84[可选] 1050+
* @param success 成功回调
* @param fail 失败回调,原因可能是用户拒绝[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetLocationOBJECT {
timeout?: Long;
coordType?: String;
success: GetLocationOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetLocationOBJECTSuccessCB = (
successArg: GetLocationSuccessSuccessArg
) => any;
/**
* 成功回调
* @param longitude 经度[可选]
* @param latitude 纬度[可选]
* @param accuracy 精确度[可选] 1040+
* @param time 时间[可选] 1040+
*/
interface GetLocationSuccessSuccessArg {
longitude?: Number;
latitude?: Number;
accuracy?: Number;
time?: Number;
}
/**
* 地理位置 geolocation
* @后台运行限制 manifest 中申请后可用。后台运行详细用法参见后台运行 脚本。
* @see https://doc.quickapp.cn/features/system/geolocation.html
*/
const geolocation: Geolocation;
export default geolocation;
}