我对这个脚本做了几处修改,但我不喜欢将它更改为从我拥有的 php 变量自动加载地图。
我希望地图加载的地址在 php 变量中$address
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
zoom: 14,
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);
}
});
}
我从谷歌提供的地图文档中挑选了这段代码。
我想更改它,以便在加载初始化方法时,它会自动转换$address
变量转换为 lat 和 long 并将其显示在地图上。我现在让它在按钮上加载 codeAddress() 但希望它成为初始化的一部分!
干杯!