5

我正在尝试制作一个需要地址和邮政编码的简单表单,所以我想知道是否有一种方法可以根据用户已经输入的内容自动填充这些字段。

因此,例如,如果他决定只输入邮政编码,则城市和国家/地区字段将自动填写,反之亦然。

搜索了一段时间后,我发现了这些我可以使用的数据库

但除此之外,我不确定如何使用 PHP 和 MySQL 来做到这一点。任何帮助,将不胜感激。

4

2 回答 2

1

*这很简单,您只需从用户那里获取邮政编码,然后您就可以使用 google api 获取 $country 和 $city。在这里,我给你一个例子,说明我如何从邮政编码(即邮政编码)中获取经度和纬度。

$postcode=$_POST('postcode');
                if($postcode)
                {

                    $address = urlencode($postcode);
                    $url='http://maps.googleapis.com/maps/api/geocode/json?address='.$address.'&sensor=false';

                    $ch = curl_init(); 
                    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
                    curl_setopt($ch, CURLOPT_URL, $url);
                    $data = curl_exec($ch);
                    curl_close($ch);
                    $source = $data;
                    $obj = json_decode($source);
                    $lat = $obj->results[0]->geometry->location->lat;
                    $long = $obj->results[0]->geometry->location->lng;


                }
$longitude=$long;
$latitude=$lat;

比你可以在你的数据库中插入上述两个变量 $longitude 和 $latitude 。简单的 :)。转到以下链接https://developers.google.com/maps/documentation/geocoding/?csw=1

现在从经度和纬度获取国家名称使用反向地理编码。在 latLng 参数中提供逗号分隔的纬度/经度对。

 var geocoder;
  var map;
  var infowindow = new google.maps.InfoWindow();
  var marker;
  function initialize() {
    geocoder = new google.maps.Geocoder();
    var latlng = new google.maps.LatLng(40.730885,-73.997383);
    var mapOptions = {
      zoom: 8,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
  }

  function codeLatLng() {
    var input = document.getElementById("latlng").value;
    var latlngStr = input.split(",",2);
    var lat = parseFloat(latlngStr[0]);
    var lng = parseFloat(latlngStr[1]);
    var latlng = new google.maps.LatLng(lat, lng);//here you will get your country and city name
    geocoder.geocode({'latLng': latlng}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        if (results[1]) {
          map.setZoom(11);
          marker = new google.maps.Marker({
              position: latlng,
              map: map
          });
          infowindow.setContent(results[1].formatted_address);
          infowindow.open(map, marker);
        }
      } else {
        alert("Geocoder failed due to: " + status);
      }
    });
  }

在此处阅读有关反向地理编码的信息并根据您的需要修改代码https://developers.google.com/maps/documentation/javascript/geocoding#ReverseGeocoding

使用:getLocations(latlng:GLatLng,回调:函数)

此方法执行反向地理编码,将纬度/经度对转换为人类可读的地址。getLocations() 向 Google 地理编码服务发送请求,要求它返回给定 latlng 的地址并在给定回调中传递响应。

由于此方法需要调用 Google 服务器,因此您还必须传递回调方法来处理响应。此响应将包含一个状态代码,如果成功,将包含一个或多个 Placemark 对象。

请注意,此方法可能会传递一个可寻址的字符串,如上所示;在这种情况下,该服务将执行标准地理编码。但是,如果第一个参数包含 GLatLng,则服务将执行反向地理编码。

于 2013-11-04T09:15:04.717 回答
0

你可以做@RoyalBg sais 但如果“基于用户已经输入的内容”你应该添加一列userid

SELECT zip_code FROM locations WHERE country like '%$country%' and userid = 254
于 2013-11-04T09:12:17.603 回答