我一直在寻找一种方法,允许用户手动覆盖网站上的地理位置(以防不正确).
谢谢任何抽出时间来回复我的帖子的人,用谷歌搜索了配额,但没有任何进展.
解决方法:
添加一个文本框,供用户输入其位置.然后将其提交给地理编码API服务,例如Google Maps,geocoding.us,Yahoo Maps等.返回并在您的应用程序中使用该结果.
如果您使用Google Maps API,则对地址进行地理编码非常简单.地址是用户输入街道地址的文本字段. latlng是一个文本字段,其中保存输出的经/纬度.
$('#searchButton').click(function() {
var geocoder = new google.maps.Geocoder();
geocoder.geocode( {'address': $('#address').val() }, function(data, status) {
if (status == google.maps.GeocoderStatus.OK) {
$('#latlng').val(data[0].geometry.location.lat+", "+data[0].geometry.location.lng);
else {
alert("Geocode was not successful for the following reason: " + status);
}
});
return false;
});
查看https://google-developers.appspot.com/maps/documentation/javascript/examples/geocoding-simple