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
0
votes
1 answer

creating dynamic NSLocale with location data

I'm working on an app which should create an NSLocale object based NOT on the user's region (which should remain at the user's preferred language for most interface elements), but on the physical location of the traveler, to format currency. …
0
votes
1 answer

at first time MKReverseGeocoder: didFailWithError:Error Domain=NSURLErrorDomain Code=-1011 {PBHTTPStatusCode=503}

In my application at first time reverseGeocoder results like error block below : didFailWithError:Error Domain=NSURLErrorDomain Code=-1011 "The operation couldn’t be completed. (NSURLErrorDomain error -1011.)" UserInfo=0x6252100 …
Srinivas
  • 983
  • 9
  • 21
0
votes
1 answer

Problem with running MKReverseGeocoder in background, iphone

I am using MKReverseGeocoder (reversegeocoder) to retrieve user's current location. I am calling reversegeocoder in locationDidUpdatedToLocation method of CLLocation Manager. - (void)locationManager:(CLLocationManager *)manager …
alekhine
  • 1,600
  • 4
  • 20
  • 45
0
votes
1 answer

reversegeocoder autorelease issue

I'm learning to use the mkreversegeocoder classes and have got it working using the following three lines of code and implementing the didFindPlacemark method. geoCoder = [[MKReverseGeocoder alloc] initWithCoordinate:[u coordinate]]; [geoCoder…
Sabur Aziz
  • 236
  • 1
  • 2
  • 9
0
votes
1 answer

How get lat and long of a point?

I am new for iPhone developer. I am designing a project in which i have given starting and ending point address. Suppose i get distance between those points is 100 miles and i divide in five equal parts of 20 miles. Then how get lat and long of…
iRam11
  • 309
  • 4
  • 16
0
votes
2 answers

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 looked at couple of examples. I will really appreciate…
slonkar
  • 4,055
  • 8
  • 39
  • 63
0
votes
2 answers

How to work around geoCoder error:503

I have tried so many solutions but nothing seems to work for me. Approximately one out of every 4 times i get /SourceCache/ProtocolBuffer_Sim/ProtocolBuffer-51.2/Runtime/PBRequester.m:684 server returned error: 503 I have declared the geocoder at…
Neelesh
  • 3,673
  • 8
  • 47
  • 78
0
votes
1 answer

retrieve address using MKReverseGeocoder

I am trying to retrieve the user address using MKReverseGeocoder. It works fine, but I am not getting the address in the proper format. code: - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark{ …
Neelesh
  • 3,673
  • 8
  • 47
  • 78
0
votes
1 answer

Android Geocoder such ad google maps

With android Geocoder I can find a shop such as Google Maps or I can only search street, monuments, airport, etc ?? I want to search shopping center with name...
Mimmo
  • 157
  • 2
  • 12
0
votes
1 answer

How to get address and phone numbers using MKReverseGeocoder in iPhone

Is this posible to get the users current location with address and contact information(phone number). I have used CLLocationManager to get the current location of the user and the tried to get the address and other detail using google API, in the…
Rajender Kumar
  • 1,377
  • 19
  • 32
0
votes
2 answers

Python : Reverse Geocoding to get city name and state name in pandas

I have a large dataset with latitudes and longitudes and i want to map city and state in front of them. Approach which i was using is this: import pandas as pd import reverse_geocoder as rg import pprint df = pd.read_csv("D:\data.csv") def…
Sahil Sharma
  • 25
  • 1
  • 6
0
votes
1 answer

Releasing MKReverseGeocoder makes my app crash!

I need to know where my users are from, so I made a little singleton object which gets the coordinates and uses mapkit to get the country code I need. Here's my header file: #import #import…
Fabio B.
  • 9,138
  • 25
  • 105
  • 177
0
votes
1 answer

Building Name using current location

I am trying to get House number using CLLocationManagerDelegate and MKMapViewDelegate but it did not work. By using this i am getting Sub-locality area and sub administrative thoroughfare and sub-through fare but not getting building name. Please…
rachna sharma
  • 111
  • 2
  • 3
  • 13
0
votes
1 answer

Location Problem in iPhone app

Below code gives me the location of US. How can i find the location of UK using the same Code help? #import "LocalWeatherViewController.h" #import "ICB_WeatherConditions.h" #import "MapKit/MapKit.h" @implementation…
N15H4NJ0
  • 33
  • 3
0
votes
1 answer

MKReverseGeoCoderDelegate not being called

I am trying to use the MKReverseGeoCoder API to get a city name based of a coordinate. For some reason the delegate never gets called; any ideas why? Here is the code: - (void)startReverseLookup { [reverseCoordinateInfo…
jelipito
  • 171
  • 2
  • 2
  • 12