编程语言
首页 > 编程语言> > php-允许用户手动覆盖地理位置

php-允许用户手动覆盖地理位置

作者:互联网

我一直在寻找一种方法,允许用户手动覆盖网站上的地理位置(以防不正确).

谢谢任何抽出时间来回复我的帖子的人,用谷歌搜索了配额,但没有任何进展.

解决方法:

添加一个文本框,供用户输入其位置.然后将其提交给地理编码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

标签:geolocation,geo,mysql,php,jquery
来源: https://codeday.me/bug/20191201/2081451.html