如何从 iPhone 核心位置获取当前(美国)状态?
我希望我的 iOS 应用程序能够显示特定于用户当前所在州的信息(即加利福尼亚州、俄勒冈州等)。这是如何使用核心位置来完成的? CLLocation 类具有坐标 — 如何将其转换为状态? (仅供参考,我不需要更多细节,例如城市或街道)
I'd like my iOS app to display information specific to the user's current state (i.e. California, Oregon, etc). How is this done using core location? The CLLocation class has coordinates—how do I turn that into the state? (FYI I don't need more detail such as city or street)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Google Maps API 反向地理编码。
http://code.google.com/apis/maps/documentation/geocoding/ #反向地理编码
Use the Google Maps API reverse geocoding.
http://code.google.com/apis/maps/documentation/geocoding/#ReverseGeocoding
正如 Brad 提到的,您可以使用 Google(或 Mapquest 等)来获取反向地理编码信息。 Google 提供 XML、JSON 或 CSV 格式的数据。因此,您可以使用如下网址:
So, http://maps.google.com/maps/geo?q=37.032978,-95.620834&output=csv&sensor=true 会将您带到堪萨斯州科菲维尔,您可以从以下位置获取信息那里。
FWIW,如果您使用 MapKit,您还可以使用 MKReverseGeocoder 来获取 MKPlacemark。
As Brad mentioned, you can use Google (or Mapquest, et al) to obtain Reverse Geocode information. Google offers data in XML, JSON, or CSV. So, you could use a URL like:
So, http://maps.google.com/maps/geo?q=37.032978,-95.620834&output=csv&sensor=true would put you in Coffeyville, KS, and you can grab the info from there.
FWIW, if you are using MapKit, you can also use the MKReverseGeocoder to obtain an MKPlacemark.
非常老的问题,但接受的答案实际上并没有回答问题。如果你想从 CoreLocation 获取状态,你可以像这样进行反向地理编码:
Very old question, but the accepted answer doesn't actually answer the question. If you want do get the state from CoreLocation you can reverseGeocode like so: