iPhone development - Locate address from user's position

后端 未结 2 838
执笔经年
执笔经年 2021-02-04 22:39

Is it possible to get the street/area where the user currently is by using the CoreLocation framework? So if I get the user\'s longitude and latitude position, can I get the add

相关标签:
2条回答
  • 2021-02-04 23:20

    Agreed - you need a reverse geocoding service - this is not included in Core Location. There is a fairly complete list of reverse geocoders here link text

    0 讨论(0)
  • 2021-02-04 23:25

    What you would need is a reverse geocoding service, that will translate a lat/lon coordinate set in to an address. I doubt that this, or access to one, is included in CoreLocation.

    You could look into a third-party provider such as Google Maps:

    http://nicogoeminne.googlepages.com/documentation.html

    There are also other work-arounds that might get you close. For example by using Multimap's routing API as described in the following:

    http://forums.multimap.com/viewtopic.php?f=1&t=51

    0 讨论(0)
提交回复
热议问题