我正在尝试找到一些极简主义的谷歌地理编码脚本。我发现的很大很复杂,但是这个很简单。它唯一没有做的实际上是将坐标放在两个输入框中,就像其他输入框一样。
这是代码工作:http: //jsfiddle.net/Rr5PL/89/
如何将坐标放在长/纬度输入字段中?它必须将它们存储起来,因为它使用它们在地图上显示。
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);
}
});
}