高德地图获取经纬度
高德官方地址
@Slf4j
public class GeoLocation {
private static final String APP_CODE_GAODE = "44aa4b2a7772504960b691cfb9802";
public static String GetLocationByAddress(String address, String city) {
log.info("地理编码:address=" + address + ",currentCity=" + city);
try {
HashMap<String, Object> parameters = new HashMap<>(3);
parameters.put("address", address);
parameters.put("city", city);
parameters.put("key", APP_CODE_GAODE);
String response = HttpUtil.get("https://restapi.amap.com/v3/geocode/geo", parameters);
JSONObject responseJson = JSONUtil.parseObj(response);
String status = responseJson.get("status").toString();
if (!"1".equals(status)) {
log.error("列表信息获取失败,关键字:" + address + "城市:" + city);
return null;
}
JSONArray geocodes = responseJson.getJSONArray("geocodes");
return JSONUtil.parseObj(geocodes.get(0)).get("location").toString();
} catch (Exception ex) {
log.error("调用接口失败!" + ex.getMessage());
return null;
}
}
public static String GetAddressByLocation(String location) {
log.info("逆地理编码:location=" + location);
try {
HashMap<String, Object> parameters = new HashMap(16);
parameters.put("location", location);
parameters.put("key", APP_CODE_GAODE);
String response = HttpUtil.get("https://restapi.amap.com/v3/geocode/regeo", parameters);
JSONObject responseJson = JSONUtil.parseObj(response);
String status = responseJson.get("status").toString();
if (!"1".equals(status)) {
log.error("列表信息获取失败,经纬度:" + location);
return null;
}
JSONObject regeocode = responseJson.getJSONObject("regeocode");
return regeocode.get("formatted_address").toString();
} catch (Exception ex) {
log.error("调用接口失败!" + ex.getMessage());
return null;
}
}
}
根据经纬度进行距离测算
@Slf4j
public class DistanceUtils {
private static final double EARTH_RADIUS = 6378.137;
public static double getDistanceStr(String lng1, String lat1, String lng2, String lat2) {
return getDistance(new Double(lng1), new Double(lat1), new Double(lng2), new Double(lat2));
}
public static double getDistance(double longitude1, double latitude1, double longitude2, double latitude2) {
log.info("经纬度距离:longitude1=" + longitude1 + ",latitude1=" + latitude1 + ",longitude2=" + longitude2 + ",latitude2=" + latitude2);
double lat1 = Math.toRadians(latitude1);
double lat2 = Math.toRadians(latitude2);
double lng1 = Math.toRadians(longitude1);
double lng2 = Math.toRadians(longitude2);
double a = lat1 - lat2;
double b = lng1 - lng2;
double s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(lat1) * Math.cos(lat2) * Math.pow(Math.sin(b / 2), 2)));
s = s * EARTH_RADIUS;
return s;
}
public static double getDistance2(double longitude1, double latitude1,
double longitude2, double latitude2) {
double latDistance = Math.toRadians(longitude1 - longitude2);
double lngDistance = Math.toRadians(latitude1 - latitude2);
double a = Math.sin(latDistance / 2) * Math.sin(latDistance / 2)
+ Math.cos(Math.toRadians(longitude1)) * Math.cos(Math.toRadians(longitude2))
* Math.sin(lngDistance / 2) * Math.sin(lngDistance / 2);
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
return c * EARTH_RADIUS;
}
}
工具类
@Slf4j
public class GeoDistance {
public static double getDistance(String origin, String destination) {
if (StringUtils.isEmpty(origin) || StringUtils.isEmpty(destination)) {
log.info("出发点或者目的地为空!");
return 0;
}
String[] originList = origin.split(",");
String[] destinationList = destination.split(",");
String originLocation = GeoLocation.GetLocationByAddress(originList[1], originList[0]);
String destinationLocation = GeoLocation.GetLocationByAddress(destinationList[1], destinationList[0]);
double distance = DistanceUtils.getDistanceStr(originLocation.split(",")[0], originLocation.split(",")[1], destinationLocation.split(",")[0], destinationLocation.split(",")[1]);
BigDecimal bg = BigDecimal.valueOf(distance);
double f1 = bg.setScale(2, RoundingMode.HALF_UP).doubleValue();
log.info("两地距离: " + f1 + "KM");
return distance;
}
}
测试
@Test
public void test1() {
String s = GeoLocation.GetLocationByAddress("陕西省西安市雁塔区", "西安");
String s1 = GeoLocation.GetLocationByAddress("广东省深圳市光明区", "深圳");
assert s != null;
String[] split = s.split(",");
assert s1 != null;
String[] split1 = s1.split(",");
Console.log(s);
Console.log(s1);
double distance = GeoDistance.getDistance("西安,陕西省西安市雁塔区东八里村新村一巷", "深圳,广东省深圳市光明区");
Console.log(distance);
}

|