我在使用 Google Maps Javascript API 根据地址检索坐标时遇到问题。我通过谷歌论坛搜索,发现地理编码概念已经解决了这个问题。
但我的应用程序不支持地理编码。是否无法使用 Javascript API 实现此逻辑
我在使用 Google Maps Javascript API 根据地址检索坐标时遇到问题。我通过谷歌论坛搜索,发现地理编码概念已经解决了这个问题。
但我的应用程序不支持地理编码。是否无法使用 Javascript API 实现此逻辑
来自 Google API 的示例:https ://developers.google.com/maps/documentation/javascript/geocoding?hl=fr :
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
}
function codeAddress() {
var address = document.getElementById("address").value;
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
<body onload="initialize()">
<div id="map-canvas" style="width: 320px; height: 480px;"></div>
<div>
<input id="address" type="textbox" value="Sydney, NSW">
<input type="button" value="Encode" onclick="codeAddress()">
</div>
</body>