scott 757bd6e4eb 提交 %!s(int64=6) %!d(string=hai) anos
..
src 757bd6e4eb 提交 %!s(int64=6) %!d(string=hai) anos
.gitignore a4056f51e4 hotels_location提交 %!s(int64=6) %!d(string=hai) anos
README.md b6dba4144f 位置服务 %!s(int64=6) %!d(string=hai) anos
pom.xml b7df42fdd8 定理位置服务 %!s(int64=6) %!d(string=hai) anos

README.md

基于地理位置服务-接口说明

1.IP转换地址与经纬度

a.请求地址

 http://127.0.0.1:8080/gt_location_service/Inlet
 http://192.168.1.30:38080/location/Inlet  线上地址

b.参数说明

参数 含义 是否必须 type 值必须为[ip] 是 ip IP地址 是

c.返回值说明 名称 含义 status True 转换成功 false 转换失败 address 地址 lng 经度 112.55086359 lat 纬度 37.89027705

d.接口示例 http://127.0.0.1:8080/gt_location_service/Inlet?type=ip&ip=183.184.74.35 返回值: {

"status": true,
"address": "山西省太原市",
"lng": "112.55086359",
"lat": "37.89027705"

}

2.地址转换经纬度

a.请求地址 http://127.0.0.1:8080/gt_location_service/Inlet b.参数说明 参数 含义 是否必须 type 值必须为[address] 是 address 详细地址 是 c.返回值说明 名称 含义 status True 转换成功 false 转换失败 lng 经度 112.55086359 lat 纬度 37.89027705 d.接口示例 http://127.0.0.1:8080/gt_location_service/Inlet?type=address&address=%E5%8C%97%E4%BA%AC%E5%B8%82%E6%B5%B7%E6%B7%80%E5%8C%BA%E8%8E%B2%E8%8A%B1%E6%B1%A0%E8%A5%BF%E8%B7%AF16%20%E5%8F%B7B%20%E5%BA%A7 返回值: {

"status": true,
"lng": "116.30238",
"lat": "39.8971"

}

3.百度坐标转地址

a.请求地址 http://127.0.0.1:8080/gt_location_service/Inlet b.参数说明 参数 含义 是否必须 type 值必须为[location] 是 lng GPS经度 是 lat GPS 纬度
c.返回值说明 名称 含义 status True 转换成功 false 转换失败 address 地址 d.接口示例 http://127.0.0.1:8080/gt_location_service/Inlet?type=location&lng=39.8972280000&lat=116.3024630000

返回值: {

"status": true,
"address": "北京市海淀区莲花池西路16号C718室"

}

4.GPS坐标转百度坐标

a.请求地址 http://127.0.0.1:8080/gt_location_service/Inlet b.参数说明 参数 含义 是否必须 type 值必须为[gps] 是 lng GPS经度 是 lat GPS 纬度
c.返回值说明 名称 含义 status True 转换成功 false 转换失败 lng 经度 112.55086359 lat 纬度 37.89027705 d.接口示例 http://127.0.0.1:8080/gt_location_service/Inlet?type=gps&lng=116.29055555555556&lat=39.889722222222225 返回值: {

"status": true,
"lng": "116.303055",
"lat": "39.897198"

}