GetLocation
- 获取当前位置信息
方法名 | 参数传递 | 说明 |
---|---|---|
GetLocation | {MethodName:'LocationInformation'} | 返回当前设备的位置信息 |
PublicLib.GetLocation({MethodName:'LocationInformation'});
// 回调
window.LocationInformation = function (content) {
/* content 返回的地址信息
* APP: 四川省成都市xxxxx
* web: {latitude:30.6366505,longitude:103.9840475}
*/
};
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8