Tagged Questions

5
votes
5answers
4k views

Determine iPhone user's country

I need to determine at startup what country a user is in, for an iPhone application. Presumably I will have to turn on location services and do some sort of reverse geocoding. I don't really want to ...
4
votes
2answers
2k views

Deallocation while key value observers still registered (reverse geocoder)

When my view goes away I get the following message: An instance 0x1c11e0 of class MKAnnotationView was deallocated while key value observers were still registered with it. Observation info was ...
3
votes
1answer
272 views

reverse geocoding and localization

I use this code to set a label with a location string locationString = [[NSString alloc] initWithFormat:@"%@%@ - %@ %@%@", thoroughfare,subThoroughfare,postalCode, ...
3
votes
1answer
2k views

Reverse Geocoding using latitude and longitude for iPhone

I need to reverse geocode based on latitude and longitude. Actually this is for my iPhone application where I get the latitude and longitude from core location api and pass that to the back end. Using ...
3
votes
1answer
752 views

get city name by parsing in iphone sdk

From this url: http://ws.geonames.org/findNearbyPostalCodes?lat=19.0176560&lng=72.8561780 I want is city name that is mumbai can somebody help me?
2
votes
1answer
113 views

When doing a reverse geocoding request Google magically recognizes my iPhone language

Im sending a simple url request using the following url: urlString = [NSString stringWithFormat: @"http://maps.googleapis.com/maps/api/geocode/xml?latlng=%f,%f&sensor=true", lat, ...
2
votes
2answers
1k views

What is the limit for reverse-geocode lookups on iPhone?

I'm trying to find out the limit for reverse-geocode lookups on iPhone, are they per application/per device and how many per day? The doco just states: MKReverseGeocoder Each Map Kit ...
1
vote
2answers
1k views

CLGeocoder and backward compatibility

I have a simple question. MKReverseCoder is deprecated and doesn't work since iOS 5. We have to use CLGeocoder. But, there are a lot of people under iOS4. How the new apps can work with iOS4 and iOS5 ...
1
vote
1answer
214 views

iPhone - reverse geocoding gives a “The operation couldn’t be completed. (PBRequesterErrorDomain error 6001.)” error

I have a simple app that shows a MapView. When the user scrolls or change the zoom position on the mapview, I want to display the country name that is on the center of the map. So I do this : - ...
1
vote
1answer
419 views

Status code 0 on Google geocode API from iPhone/sim, but works fine on web (Non English characters)

Try: http://maps.googleapis.com/maps/api/geocode/json?address=Őrbottyán,Hungary&sensor=true On an iPhone 4 & simulator, -(void)requestFailed:(ASIHTTPRequest *)request { NSLog(@"geocode ...
1
vote
2answers
466 views

iPhone - Updating Annotation subtitle in mapkit

I have a custom placemark with title and subtitle. The subtitle is actually displaying the address of the dropped pin using the reverse geocoder. I have a button which has an action to drop the pin. ...
1
vote
2answers
297 views

Offline Reverse Geocoding at Country Level

There seems to be much about this, but everyone seems to want street level data. I'm writing an iOS app that needs to get the international dial code (outgoing) for the country you are in - so all I ...
1
vote
1answer
274 views

Geolocalization, reverse geocoder, callbacks and object deallocation

In my app, I get the user location and do the reverse geocoder. At the same time the user can write a note. Sometimes, when I debug and run my app, I obtain this msg: *** -[MyViewController ...
1
vote
1answer
864 views

Read Current Location Name Using Map View In Iphone

I read the current location's latitude and longitude values and then pin that location in Iphone successfully. Now i want to read that place name using this latitude and longitude values. If anybody ...
1
vote
1answer
176 views

Most Useful services/methods for Geocoding in Augmented Reality app for iPhone?

I'm building an Augmented Reality application in the fashion of Yelp, and need to access the geodata of various buildings in as accurate a fashion as possible. What is the most accurate Geocoding ...
1
vote
1answer
710 views

Reverse geocode street name and city as text

I have been having some trouble finding a good way to output just the street name and city as text (Infinite Loop, Cupertino shown here) that can be displayed in my iPhone app. This needs to be able ...
1
vote
1answer
3k views

iPhone reverse geocoding: give all possible streets/suburbs?

I know Core Location isnt always accurate on the iPhone. Is there a way to use the location (lat/long) along with the accuracy to then grab all of the possible suburbs/streets in that area? So ...
0
votes
0answers
26 views

Tracing the address in MapKit

My location manager is not updating my coordinates of current locations so that i cant able to trace that address....... I am using the following code, - (void)viewDidLoad { [super viewDidLoad]; ...
0
votes
1answer
132 views

Can anybody tell me how to get the Address from Latitude and longitude using CLGecoder

I tried Using CLGeocoder but i am not getting the correct address. But however i tried the same using MKReverseGeocoder and i am getting the correct address. Did anyone encounter this issue before. ...
0
votes
1answer
169 views

how error is solved:-/SourceCache/ProtocolBuffer_Sim/ProtocolBuffer-51.2/Runtime/PBRequester.m:684 server returned error: 503 using reverseGeocoding?

When i am using reverse geocoding in iphone i get this error in console. /SourceCache/ProtocolBuffer_Sim/ProtocolBuffer-51.2/Runtime/PBRequester.m:684 server returned error: 503 What does it ...
0
votes
0answers
293 views

iOS5 Reverse Geocoding Limitations

I'm using the Reverse Geocoding provided by Apple (Linked to the dev documentation at the bottom of this post). I have set this up to work with my current project. When I touch the map, the ...
0
votes
0answers
75 views

MapKit stopped sending subThoroughfare when the coordinates don't correspond to an exact street number

What happened to MapKit? Till a few days ago I could retrieve a range of numbers of an address i.e. "Omirou 40-50" with reverse geocoding. Even the example code from apple stopped working. You can ...
0
votes
1answer
143 views

reverse and forward geocoding within a region

I wish to know which is the best approach to do as said in the title. Somehow, the reverse geocoding provided in the mapkit framework can't seems to provide accurate address(missing postal code etc) ...
0
votes
2answers
567 views

Reverse Geocoder delegate methods are not getting called?

I am working on an iPhone app which needs to find out current city/State. I am using reversegeocoding. But its delegate methods are not get called. I am not sure where I am going wrong because I ...
0
votes
1answer
86 views

getting address using reverse geocoding

I am writing iPhone application based on users location I need to find list of addresses nearby. (streets at least) Can this be done using reverse geocoding?
0
votes
1answer
107 views

iPhone SDK: Retrieving street info while scrolling MapView

Is it possible to continuously retrieve street name/house number (and update it somewhere in text box or callout) while user scrolls UIMapView? I've found that MKReverseGeocoder is responsible for ...
0
votes
1answer
664 views

MKReverseGeocoder Help!

I am using MKReverseGeocoder to reversely geocode a latitude/longitude address. However I am having trouble determining which Annotation's subtitle is going to be set. To expand on that a bit, I am ...
0
votes
1answer
452 views

iPhone using geocoder to create a string so it can be fed into Google Maps

So here's my last query. I've got all my components I need, however, I need the phone to create a string from the geocoder so it can be fed into Google maps. This string is passed to a server, then ...
0
votes
1answer
370 views

Use MKReversegeoCoder with native application

I have used MKReverseGeocoder from iPhone sdk for my application without using mapview of iphone sdk,but my application has map view which i am getting from google api passing Address. But in order ...
0
votes
1answer
254 views

iPhone SDK: ReverseGeocoder updates too late?

I am using reverseGeocoder in a few places in my app. This particular instance, I am using it to update details about my annotation. I have created a property (MKPlacemark) which stores the new ...
0
votes
3answers
1k views

Web service for Location name using Latitude & Longtitude

I have an iPhone application where i need to find out the current location(in terms of city name or probably the address). But i'm not been able to do that. I can find out the current latitude and ...
0
votes
3answers
863 views

How to find State location from iphone GPS?

I'm trying to add to my program that locates the person in GPS but sets a value to the State that person is in so example: GPS Locates person from his/her iphone then returns the state they are in so ...