从邮政编码自动填写国家和城市,相反

时间:2013-11-04 08:54:48

标签: php html mysql geolocation

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

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

经过一段时间的搜索,我找到了可以使用的这些数据库

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

2 个答案:

答案 0 :(得分: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在你的database.simple中插入:) .go到以下链接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,callback:function)

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

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

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

答案 1 :(得分:0)

您可以执行@RoyalBg sais,但如果“基于用户已输入的内容”,则应添加列userid

SELECT zip_code FROM locations WHERE country like '%$country%' and userid = 254