如何使用谷歌地图的lat& amp;获取印度邮政编码长?

时间:2013-05-22 19:25:16

标签: javascript api google-maps sencha-touch-2 geocoding

我正在创建一个应用程序,它将获取用户的当前位置或他的自定义地图标记,以找出lat&很长,然后使用这些值,我想知道该区域的密码(zipcode),以便我可以告诉用户是否可以在该区域交付货物。

我试过这个:http://www.geonames.org/export/ws-overview.html但它没有完整的数据,不管它有什么不是很准确。是否有其他API可用于获取此类数据?

1 个答案:

答案 0 :(得分:13)

如果您有位置(和Google Maps API v3地图),reverse geocode该位置。处理postal_code的返回记录(参见this SO post for an example)。

// assumes comma separated coordinates in a input element 
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);
  geocoder.geocode({'latLng': latlng}, processRevGeocode);
}

// process the results
function processRevGeocode(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
       var result;
       if (results.length > 1)
          result = results[1];
       else
          result = results[0];
       if (result.geometry.viewport)
          map.fitBounds(result.geometry.viewport);
       else if (result.geometry.bounds)
          map.fitBounds(result.geometry.bounds);  
       else { 
          map.setCenter(result.geometry.location);
          map.setZoom(11);
       }
       if (marker && marker.setMap) marker.setMap(null);
       marker = new google.maps.Marker({
           position: result.geometry.location,
           map: map
       });
       infowindow.setContent(results[1].formatted_address);
       infowindow.open(map, marker);
       displayPostcode(results[0].address_components);

    } else {
      alert('Geocoder failed due to: ' + status);
    }
}

// displays the resulting post code in a div
function displayPostcode(address) {
  for (p = address.length-1; p >= 0; p--) {
    if (address[p].types.indexOf("postal_code") != -1) {
       document.getElementById('postcode').innerHTML= address[p].long_name;
    }
  }
}

Working example (displays a postcode from a geocoded address, reverse geocoded coordinates, or a click on the map)