经纬度-百度转高德
作者:互联网
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();
}
标签:转高德,convert,converter,经纬度,LatLng,CoordinateConverter,location,CoordType,百度 来源: https://blog.csdn.net/weixin_42707424/article/details/120183890