我是靠谱客的博主 落寞超短裙,最近开发中收集的这篇文章主要介绍使用腾讯地图API根据详细地址反查坐标经纬度,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

业务背景:地图数据需要某个地点的详细坐标,通过调研,腾讯地图的API较为开放,个人每日10000次,并发5次/秒,企业1000000万次,基本符合业务需求。

首先需要再腾讯地图开通个人或者企业账号,会给开通一个key,每次访问接口都需要带这个key

public void getCoordinate(String address) {
        String requestUrl="https://apis.map.qq.com/ws/geocoder/v1/?address="+address+"&key="+qqMapKey;
        String response = HttpClientUtil.sendGetRequest(requestUrl, "UTF-8");
        log.info("腾讯地图地址:{},查询坐标响应内容:{}",address,response);
        QqMapResponseDto responseDto = JSONObject.parseObject(response, QqMapResponseDto.class);
        if(responseDto.getStatus() == 0){
            LocationDto location = responseDto.getResult().getLocation();
            return JSONObject.toJSONString(location)
        }
@Data
public class QqMapResponseDto {
    private Integer status;
    private String message;
    private QqMapResultDto result;
}
@Data
public class LocationDto {
    private BigDecimal lng;
    private BigDecimal lat;
}
public static String sendGetRequest(String reqURL, String decodeCharset){
        log.info("get请求:start---------------------");
        long responseLength = 0;
        String responseContent = null;
        CloseableHttpClient httpClient = HttpClients.createDefault();
        HttpGet httpGet = new HttpGet(reqURL);
        RequestConfig config = RequestConfig.custom().setConnectionRequestTimeout(connectionRequestTimeout)
                .setConnectTimeout(connectTimeout).build();
        httpGet.setConfig(config);
        try {
            // 执行get请求
            HttpResponse response = httpClient.execute(httpGet);
            HttpEntity entity = response.getEntity();
            if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
                if (null != entity) {
                    responseLength = entity.getContentLength();
                    responseContent = EntityUtils.toString(entity, decodeCharset == null ? "UTF-8" : decodeCharset);
                    EntityUtils.consume(entity);
                }
            }
        } catch (Exception e) {
            log.error("与[" + reqURL + "]通信过程中发生异常,堆栈信息如下:{}", e);
        }finally {
            try {
                httpClient.close();
            }catch (IOException e){
                log.error("关闭[+"+reqURL+"]连接发生异常,堆栈信息:{}",e);
            }

        }
        log.debug("请求地址:{}", reqURL);
        log.debug("响应长度:{}", responseLength);
        log.debug("响应内容:{}", responseContent);
        log.debug("get请求:end---------------------");
        return responseContent;
    }

该API后续监控到腾讯对于地图数据查询会不断自动完善功能,本公司业务 前期对于查询不到的数据 进行手动调接口维护,后续发现腾讯地图对于该地址数据进行了补充。

最后

以上就是落寞超短裙为你收集整理的使用腾讯地图API根据详细地址反查坐标经纬度的全部内容,希望文章能够帮你解决使用腾讯地图API根据详细地址反查坐标经纬度所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部