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.
Questions tagged [mkreversegeocoder]
83 questions
0
votes
1 answer
How can i get the current location in iphone application?
I got the longitude and latitude values and i saved it in a label and it was easily displayed in my application but i want the current location details, mainly the name of the place.
I used MKReverseGeocoder. i did this code
-…

goku
- 169
- 1
- 13
0
votes
2 answers
MKReverseGeocoder "deprecated in iOS 5"
It say it is "deprecated in iOS 5".
- (void)viewDidLoad {
[super viewDidLoad];
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
[geocoder reverseGeocodeLocation:self.locationManager.location // You can pass aLocation here instead
…

user1555256
- 115
- 1
- 8
0
votes
1 answer
MKReverseGeocoder location finder error {PBHTTPStatusCode=503} response in didFailWithError: delegate iPhone?
Am using MKReverseGeocoder to find the current location in my iPhone app. Now a days the app should not find the current locations. When i trouble shoot the problem i have found the following error response from -…

Gopinath
- 5,392
- 21
- 64
- 97
0
votes
1 answer
Getting error on using MKReverseGeoCoder
When we are trying to use MKReverseGeoCoder always getting an error,
"/SourceCache/ProtocolBuffer/ProtocolBuffer-47.1/Runtime/PBRequester.m:682 server returned error: 503
error : Error Domain=PBRequesterErrorDomain Code=6001 "The operation couldn’t…

Neo
- 936
- 6
- 17
0
votes
1 answer
Sending 'CLLocationManager *' to parameter of incompatible type 'CLLocationCoordinate2D';
Im working through a weather app tutorial. I am having trouble getting the reverse geocode of the location. It keeps getting the error that is in the title. I get what it is telling me just stuck on how to fix it.
Heres the code snippet:
if (1)
{
…

heinst
- 8,520
- 7
- 41
- 77
0
votes
1 answer
How to create a location autocompletion input field in iOS 5?
I know iOS offers MKReverseGeocoder which translates the user's lat/long into a location like "San Francisco", but is there also the opposite? To create a text field where users type "San F" and it offers locations starting with "San F" to choose…

Proud Member
- 40,078
- 47
- 146
- 231
0
votes
1 answer
After ReverseGeocoder in CLLocation Cordinate ,what Should i give to Google Map Web Service For Exact Location?
I am trying to draw route between two location. For that i have Two CLLocation (startPoint ,endPoint). After MKReverseGeocoder of this two location I got out put like this.
- (void)findAddress{
geoCoder1 = [[MKReverseGeocoder alloc]…

Musthafa
- 862
- 3
- 12
- 27
-6
votes
2 answers
Google maps Marker to show location name in title
I am a total newbie in android development, trying to learn here. I am trying to get the marker to show up on maps with a touch or tap which works, it also shows latitude and Longitude. I want to convert those latitude and Longitude into it's…

Manthan Bhavsar
- 1
- 4