项目中用到的小方法,分享一下
根据经纬度获取当前位置,下面罗列了阿里、百度、腾讯三家的坐标反查,基本大同小异 以腾讯为例
public String findAddr(String longitude, String latitude) {
//latitude 纬度 小 longitude 经度 大
//阿里参数解释: 纬度,经度 type 001 (100代表道路,010代表POI,001代表门址,111可以同时显示前三项)
//阿里坐标反查
//String urlString = "http://gc.ditu.aliyun.com/regeocoding?l=" + latitude + "," + longitude + "&type=100";
//百度坐标反查
//String urlString = "http://api.map.baidu.com/geocoder/v2/?location=" + latitude + "," + longitude + "&output=json&ak=pxoWG9wF3GkmImh4zqI5M9ho" + "&pois=0";
//腾讯坐标反查
String urlString = "https://apis.map.qq.com/ws/geocoder/v1/?location=" + latitude + "," + longitude + "&get_poi=1&key=RTDBZ-VCBW4-CEEU4-X3IOT-4EUQ2-QIBR5";
String res = "";
try {
URL url = new URL(urlString);
java.net.HttpURLConnection conn = (java.net.HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("post");
java.io.BufferedReader in = new java.io.BufferedReader(new java.io.InputStreamReader(conn.getInputStream(), "UTF-8"));
String line;
while ((line = in.readLine()) != null) {
res += line + "\n";
}
in.close();
} catch (Exception e) {
System.out.println("error in wapaction,and e is " + e.getMessage());
}
JSONObject jsStr = JSONObject.parseObject(res);
JSONObject str = JSONObject.parseObject(jsStr.get("result").toString());
return str.get("address").toString();
}
返回结果如下,大家取自己想要的数据即可
{
"status": 0,
"message": "query ok",
"request_id": "69747eb4-f861-11e8-a8be-6c0b84d75b0d",
"result": {
"location": {
"lat": 37.43365,
"lng": 118.67466
},
"address": "山东省东营市东营区府前大街77号",
"formatted_addresses": {
"recommend": "东营市政府",
"rough": "东营市政府"
},
"address_component": {
"nation": "中国",
"province": "山东省",
"city": "东营市",
"district": "东营区",
"street": "府前大街",
"street_number": "府前大街77号"
},
"ad_info": {
"nation_code": "156",
"adcode": "370502",
"city_code": "156370500",
"name": "中国,山东省,东营市,东营区",
"location": {
"lat": 37.433651,
"lng": 118.67466
},
"nation": "中国",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"address_reference": {
"crossroad": {
"id": "4965374",
"title": "胶州路/府前大街(路口)",
"location": {
"lat": 37.43301,
"lng": 118.669823
},
"_distance": 428,
"_dir_desc": "东"
},
"town": {
"id": "370502003",
"title": "东城街道",
"location": {
"lat": 37.433651,
"lng": 118.67466
},
"_distance": 0,
"_dir_desc": "内"
},
"street_number": {
"id": "18144220246262240968",
"title": "府前大街77号",
"location": {
"lat": 37.433651,
"lng": 118.67466
},
"_distance": 28.5,
"_dir_desc": ""
},
"street": {
"id": "840368564172484022",
"title": "府前大街",
"location": {
"lat": 37.433052,
"lng": 118.674667
},
"_distance": 60.9,
"_dir_desc": "北"
},
"landmark_l2": {
"id": "9572013387547394861",
"title": "东营市政府",
"location": {
"lat": 37.433811,
"lng": 118.674408
},
"_distance": 0,
"_dir_desc": "内"
}
},
"poi_count": 10,
"pois": [
{
"id": "9572013387547394861",
"title": "东营市政府",
"address": "山东省东营市东营区府前大街77号",
"category": "机构团体:政府机关",
"location": {
"lat": 37.433811,
"lng": 118.674408
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 0,
"_dir_desc": "内"
},
{
"id": "3778727006938218374",
"title": "新世纪广场",
"address": "山东省东营市东营区府前大街92号",
"category": "旅游景点:城市广场",
"location": {
"lat": 37.431801,
"lng": 118.67469
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 87.5,
"_dir_desc": "北"
},
{
"id": "17839288141395836424",
"title": "东营市纪检委",
"address": "山东省东营市东营区府前大街77号",
"category": "机构团体:政府机关",
"location": {
"lat": 37.434299,
"lng": 118.674583
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 72.5,
"_dir_desc": "南"
},
{
"id": "8824438052850152047",
"title": "东营市委",
"address": "山东省东营市东营区府前大街77号",
"category": "机构团体:政府机关",
"location": {
"lat": 37.434299,
"lng": 118.674583
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 72.5,
"_dir_desc": "南"
},
{
"id": "17434387281981270799",
"title": "东营市民族事务委员会",
"address": "山东省东营市东营区府前大街77号",
"category": "机构团体:政府机关",
"location": {
"lat": 37.43396,
"lng": 118.674614
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 34.6,
"_dir_desc": ""
},
{
"id": "9313042909846047882",
"title": "东营市法制办公室",
"address": "山东省东营市东营区府前大街77号",
"category": "机构团体:政府机关",
"location": {
"lat": 37.43396,
"lng": 118.674614
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 34.6,
"_dir_desc": ""
},
{
"id": "15024919115594198679",
"title": "东营市发改委",
"address": "山东省东营市东营区府前大街77号市政府大楼",
"category": "机构团体:政府机关",
"location": {
"lat": 37.434299,
"lng": 118.674583
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 72.5,
"_dir_desc": "南"
},
{
"id": "9074832677240004076",
"title": "东营市科技局",
"address": "山东省东营市东营区府前大街77号",
"category": "机构团体:政府机关",
"location": {
"lat": 37.434299,
"lng": 118.674583
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 72.5,
"_dir_desc": "南"
},
{
"id": "2857899543463581441",
"title": "东营市人社局",
"address": "山东省东营市东营区府前大街77号",
"category": "机构团体:政府机关",
"location": {
"lat": 37.434299,
"lng": 118.674583
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 72.5,
"_dir_desc": "南"
},
{
"id": "6359637021302127621",
"title": "东营市监察委员会",
"address": "山东省东营市东营区",
"category": "机构团体:政府机关",
"location": {
"lat": 37.434299,
"lng": 118.674583
},
"ad_info": {
"adcode": "370502",
"province": "山东省",
"city": "东营市",
"district": "东营区"
},
"_distance": 72.5,
"_dir_desc": "南"
}
]
}
}