我试图在 iPhone 上找到一个城市的经纬度。假设用户正在搜索伦敦,我会调用一些函数来检索伦敦的经度和纬度。我在网上查看过,发现您可以使用 Google API,但在某处必须有一个 Apple 函数来处理这个问题?
我遇到了 MKReverseGeocoder,它需要很长和 lat,告诉你你在哪个城市附近。例如
// reverse geocode the user location
geocoder = [[[MKReverseGeocoder alloc] initWithCoordinate:mapView.userLocation.location.coordinate] autorelease];
如果它可以逆转这个过程,一定有某种形式的 MKGeocoder 类?