Google Maps Geocoder: вернуть почтовый индекс - PullRequest
2 голосов
/ 05 декабря 2011

Я использую пользовательский интерфейс Jquery для автозаполнения поиска адреса с помощью Геокодер Google Maps , и при выборе адреса возвращается информация о геокоде.Вот фрагмент:

$('#address-dropdown').autocomplete({
  //Use geocoder to fetch lat+long values from an address input using google maps API
  source: function(request, response) {
    geocoder.geocode( {'address': request.term }, function(results, status) {
      response($.map(results, function(item) {
        return {
          label: item.formatted_address,
          value: item.formatted_address,
          location: item.geometry.location,
          latitude: item.geometry.location.lat(),
          longitude: item.geometry.location.lng()
        }
      }));
    })
  },

Мне нужна возможность вернуть использование «postal_code», чтобы проверить, живут ли они в допустимой области.Вот пример выходных данных: http://maps.googleapis.com/maps/api/geocode/json?address=1601+Main+St+Eaton+Rapids+MI+48864&sensor=false

Как я могу настроить таргетинг информации о почтовом индексе?

1 Ответ

3 голосов
/ 05 декабря 2011

Посмотрите на мой пример: http://jsfiddle.net/nEKMK/

o ваш объект.

if (o.results[0].address_components) {
    for (var i in o.results[0].address_components) {
        if (typeof(o.results[0].address_components[i]) === "object" && o.results[0].address_components[i].types[0] == "postal_code") {
            var result = o.results[0].address_components[i].long_name;
        }
    }
}
if (!result) {
    alert("Error, there is no postal code");
} else {
   alert(result);
}
...