我尝试使用地址而不是lat / lng显示google.maps.Polyline。
我现在的代码是:
var flightPlanCoordinates = [
new google.maps.LatLng(37.772323, -122.214897),
new google.maps.LatLng(21.291982, -157.821856),
new google.maps.LatLng(-18.142599, 178.431),
new google.maps.LatLng(-27.46758, 153.027892)
];
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
strokeColor: "#FF0000",
strokeOpacity: 1.0,
strokeWeight: 2
});
flightPath.setMap(map);
是否有机会将固定的LatLng浮点数更改为文本地址?
由于
答案 0 :(得分:0)
您可以使用Google地图的反向地理编码服务:http://code.google.com/apis/maps/documentation/geocoding/#ReverseGeocoding