我正在使用 Google Maps API 显示基于邮政编码的地图,然后使用 Google 的地理编码服务(https://google-developers.appspot.com/maps/documentation/javascript/examples/geocoding-simple)转换邮政编码输入经纬度并显示地图。
Google 页面上的示例使用一个按钮来激活地理编码功能,我使用该代码作为起点。但是,我不想要按钮,我想硬编码邮政编码(稍后我将用从自定义元输入中获取的字符串替换它)。我将如何调整此代码以获取我在地址变量中声明的邮政编码并在初始加载时加载它,而不是单击按钮?
希望这是有道理的。
<script src="http://maps.googleapis.com/maps/api/js?key=XXX&sensor=false" type="text/javascript"></script>
<script>
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 = 'PO19 1DQ';
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);
}
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<input type="button" value="Geocode" onclick="codeAddress()">
<div id="map-canvas" style="width:100%;height:300px;"></div>