如何将反向地理编码值获取到输入字段中?



google提供的用于将坐标反向地理编码为完整地址的示例代码很好,并且在此堆栈问题上使用回复时,相同的结果很好

问题是我不希望它们按照示例在信息框中,但我想更新我的输入字段,这是我现在使用的代码,删除了反向地理编码,因为我无法将其转换为输入值:

<p id="addressHelper" ></p>
<div id="map"></div>
var myMarker = new google.maps.Marker({
position: new google.maps.LatLng(47.651968, 9.478485),
draggable: true
});
google.maps.event.addListener(myMarker, 'dragend', function (evt) {
document.getElementById('addressHelper').innerHTML = '<p>Marker dropped: Current Lat: ' + evt.latLng.lat().toFixed(3) + ' Current Lng: ' + evt.latLng.lng().toFixed(3) + '</p>';
});
google.maps.event.addListener(myMarker, 'dragstart', function (evt) {
document.getElementById('addressHelper').innerHTML = '<p>Currently dragging marker...</p>';
});
map.setCenter(myMarker.position);
myMarker.setMap(map);

在玩了一会儿并阅读了周围的其他 tuts 之后,这是我的解决方案:

<input type="text" id="location-text-box" name="address" placeholder="Your location..." required="">
<div id="map"></div>

window.onload = function () {
var myLatlng = new google.maps.LatLng(-25.363882, 131.044922);
var mapOptions = {
center: myLatlng,
zoom: 1,
mapTypeId: google.maps.MapTypeId.ROADMAP,
disableDefaultUI: true,
zoomControl: true
};
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
draggable:true,
title:"Drag me!"
});
google.maps.event.addListener(marker, 'dragend', function (e) {
var latlng = new google.maps.LatLng(e.latLng.lat(), e.latLng.lng());
var geocoder = geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'latLng': latlng }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[1]) {
$("#location-text-box").attr("value", results[1].formatted_address);
}
}
});
});
}

相关内容

  • 没有找到相关文章