Questions tagged [mkreversegeocoder]

The MKReverseGeocoder class provides services for converting a map coordinate (specified as a latitude/longitude pair) into information about that coordinate, such as the country, city, or street. A reverse geocoder object is a single-shot object that works with a network-based map service to look up placemark information for its specified coordinate value.

83 questions
1
vote
1 answer

MKReverseGeocoder autorelease/release question in Apple's CurrentAddress sample

I am looking at this code lifted straight from the MapViewController.m file in the CurrentAddress sample available on Apple's web site: - (void)dealloc { [reverseGeocoder release]; [mapView release]; [getAddressButton release]; …
BP.
  • 10,033
  • 4
  • 34
  • 53
1
vote
0 answers

Mapbox Geocoder framework not found

My project is build in Objective c. My podfile is as below: platform :ios, '9.0' target 'Traget1' do use_frameworks! pod 'GooglePlaces' pod 'Mapbox-iOS-SDK', '~> 5.1' pod 'MapboxGeocoder.swift', '~> 0.11' end target 'Traget2' do …
Aakil Ladhani
  • 984
  • 9
  • 32
1
vote
1 answer

I want 100 requests on MKReverseGeocoder per minute. Is it correct?

I want 100 requests on MKReverseGeocoder. Is it correct? Does apple block my app ?
Voloda2
  • 12,359
  • 18
  • 80
  • 130
1
vote
1 answer

Reverse Geocoding on MKMapView by dragging Pins

I have a subclass "Location" of NSManagedObject and this class conforms to MKAnnotation. When I add a Location to a Map...the ReverseGeocoder starts. By clicking the pin I see in the callout View the address of the pin. So everything works fine. Now…
1
vote
1 answer

Reverse geocode using MKReverseGeocoder

Google Terms says I can only use reverse geocoding in conjunction with a google map. Is it ok if you first see the address in a uitableviewcell and then on a click see the location in a map (is this "in conjunction") ? Tried two other free services…
Allisone
  • 8,434
  • 4
  • 32
  • 54
1
vote
1 answer

iPhone: Turning latitude/longitude into "major cross-streets"

Using the MKReverseGeocoder or GoogleAPI or MapKit... Is there a simple way to turn a latitude/longitude into "nearest major cross-streets"? A user might not have any idea where "12345 Pineapple" is located... so I want to show something like…
1
vote
1 answer

iPhone Development: Use of MKReverseGeocoder

Does anyone know if MKReverseGeocoder can be used in commercial apps/paid apps? The Google Maps Terms of Service are not very clear on that (to me). http://code.google.com/apis/maps/iphone/terms.html
Mustafa
  • 20,504
  • 42
  • 146
  • 209
1
vote
1 answer

reverseGeocodeLocation country list

I'm creating a global app and one of the initial screens will detect which country the user is in. I'm using reverseGeocodeLocation for this. [geocoder reverseGeocodeLocation:[locations lastObject] completionHandler:^(NSArray *placemarks, NSError…
1
vote
1 answer

How to get the nearest city name via latitude and longitude?

I managed to get the city name using the GeoCoder, but sometimes the GPS returns values that GetLocality can not recognize (returning "null"). I think the best solution is to get the nearest city name. Can anyone tell me please how to do that. Or if…
1
vote
1 answer

Reverse geocoding in xcode

I am making an app that takes your current location and determines the tax of the state you're in. So, I need to use reverse geocoding. I have found a few tutorials and similar questions on this site, but I haven't found anything that pertains to…
Bob Jones
  • 360
  • 5
  • 16
1
vote
3 answers

Is MKReverseGeocoder delegate method working on separate thread?

I am trying draw route between two location.For that i have two instance of CLLocation startPoin,endPoind. I want to convert this two location two corresponding Location Address.After that i want to fetch all route points from Google map webservice.…
Musthafa
  • 862
  • 3
  • 12
  • 27
1
vote
1 answer

CLGeocoder returns different result than MKReverseGeocoder

I am attempting to modify our app from using MKReverseGeocoder to CLGeocoder for devices running iOS 5, but I'm getting different results from the two classes. Specifically, when doing a reverse geocode with this coordinate: (47.643126,…
David Potter
  • 2,272
  • 2
  • 22
  • 35
0
votes
1 answer

How to show Multiple Address From Lat/Long to show in tableView?

I am trying to show addresses of a certain list of Latitude/Longitude using MKReverseGeocoder i get values of some Lat/Long right,while for some i get {PBHTTPStatusCode=503} /SourceCache/ProtocolBuffer/ProtocolBuffer-92/Runtime/PBRequester.m:687…
iPhoneDev
  • 303
  • 1
  • 2
  • 10
0
votes
1 answer

Finding region programmatically

I need to find in what region i am in. For example: New York etc. How could i do this programmatically ? It is possible to find the UUID, or the iOS version of an individual, but how can we find in what region the person is using the application. I…
shajem
  • 2,111
  • 5
  • 22
  • 30
0
votes
1 answer

Reverse Geocode using CLGeocoder

I'd like to ask for a second opinion for my solution in reverse Geocoding in getting a user's current location: - (void)reverseGeocodeLocation:(CLLocation *)location { CLGeocoder* reverseGeocoder = [[CLGeocoder alloc] init]; if…
Kimpoy
  • 1,974
  • 3
  • 21
  • 38