## 使用前先引入文件
```
import ea55api_vue from 'ea55api_vue';
```
## 获取综合定位
```
ea55api_vue.location(function(ret,err){
});
```
## 使用IP定位
```
ea55api_vue.location_ip(function(ret,err){
});
```
## 计算2个坐标点之间的距离
```
ea55api_vue.GetDistance(lat1, lng1, lat2, lng2);
```