Get zip code based on lat amp; long?(根据 lat amp; 获取邮政编码长的?)
问题描述
是否有我可以 ping 通的服务或 API,并将 lat/long 作为参数传递,它会返回 lat/long 对所在的邮政编码?这是仅限美国,所以我不必担心国际代码等.
Is there a service or API I can ping, and pass in the lat/long as parameters, where it returns the zip code that lat/long pair is within? This is US-only, so I don't have to worry about international codes, etc.
我觉得谷歌地图的反向地理编码对我来说太重了.如果可能的话,我更喜欢更轻的东西.这将在 javascript 中完成.
I feel like Google Maps' reverse-geocoding is too heavy for me. I'd prefer something lighter, if possible. This will be done in javascript.
推荐答案
叫做反向地理编码(地址查找).要获取 lat: 40.714224, lng: -73.961452 的地址,请使用参数 latlng=40.714224,-73.961452& 查询
(示例) 并返回 JSON 对象或使用 http://maps.googleapis.com/maps/api/geocode/json
sensor=truehttp://maps.googleapis.com/maps/api/geocode/xml
返回 XML 响应 (示例).它来自 Google,而且是免费的.
It is called Reverse Geocoding (Address Lookup). To get address for lat: 40.714224, lng: -73.961452 query http://maps.googleapis.com/maps/api/geocode/json
with parameters latlng=40.714224,-73.961452&sensor=true
(example) and it returns JSON object or use http://maps.googleapis.com/maps/api/geocode/xml
to return XML response (example). It's from Google and it's free.
这篇关于根据 lat & 获取邮政编码长的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:根据 lat & 获取邮政编码长的?
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01