How to easily get a zipcode from a generic address with google maps api?

一曲冷凌霜 提交于 2019-12-03 11:36:36

Why not using (for instance 1600+Amphitheatre+Parkway,+Mountain+View is your address)

http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true_or_false

And then parse the JSON for

"long_name": "94043",
  "short_name": "94043",
  "types": [ "postal_code" ]
} ]

see here -> http://code.google.com/apis/maps/documentation/geocoding/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!