经纬度-百度转高德

public LatLng transformationLocation(LatLng location) {
        CoordinateConverter converter = new CoordinateConverter();
// CoordType.GPS 待转换坐标类型
        converter.from(CoordinateConverter.CoordType.BD09LL);
// sourceLatLng待转换坐标点 LatLng类型
        converter.coord(location);
// 执行转换操作
        //desLatLng = converter.convert();
        return converter.convert();
    }
上一篇:高德地图动态绑定页面的mark标注的信息以及绑定弹窗事件


下一篇:百度地图开发-绘制点线提示框 07