[TOC]
### 固定返回值
固定返回值是:lat 和 lon 其他是根據不同的請求返回不同的狀態
source 返回值:
location_web= web定位
location_ip= ip定位
location_localStorage= 讀取定位緩存返回的
```
{
lat:"22.93212254",
lon:"113.1017375",
source:"location_web"
}
```
*****
### 獲取定位(web端需要https協議)
```
Ea55_App.com.location_com({},function(ret){
console.log(ret);
alert(JSON.stringify(ret));
});
```
*****
### 根據IP定位
```
ea55_data['gaode_web_key']='高德地圖web_ak';
Ea55_App.com.location_ip({},function(ret){
console.log(ret);
alert(JSON.stringify(ret));
});
```
*****