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();
}