Tagged Questions
Generates an address from a latitude and longitude.
9
votes
5answers
469 views
Storable Geocoding/reverse Geocoding services
Im currently looking into an easy way to query and store Latitude/Longitude for a given address. There are a plentitude of services out there, but none actually allows me to store the data I retieve ...
6
votes
4answers
2k views
Country name for GPS coordinates
Is there an easy way to get the name of the country on whose territory a given point is located?
I don't care too much about accuracy nor about ambiguities given by political disputes. Just need a ...
6
votes
3answers
1k views
How to reverse geocode without Google?
Are there any web services (paid or free) out there besides the Google Maps API which allow you to reverse geocode?
My particular application will have access to a latitude and longitude and I need ...
6
votes
2answers
2k views
How to convert Latitude and longitude to Location name
How can we get address or location name from latitude and longitude using any API in java? In my applicaiton I have set of latitude and longitude, But I need an API which will return me the location ...
6
votes
1answer
5k views
Reverse geo location using openstreetmap [closed]
I have used openstreet map in my ongoing website.
I have developed website using PHP.
My requirement is to get ADDRESS based on Geo Location(Latitude & Longitude).
Is there any openstreet API ...
5
votes
2answers
803 views
Bing API for finding nearby cities
Is there a Bing API for finding nearby cities given a city name or lat/long combination?
5
votes
1answer
480 views
how to find continent in particular location using Geocoder in android app
i am developing android application using Geocoder services,
I have an application where I try to get address of a location based on
the latitude,longitude coordinates its working fine.
...
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 ...
4
votes
2answers
150 views
Data structure with two primary keys? (caching lat/lon address pairs)
I'm trying to cache lat/lon address pairs from Google Maps, so I need a data structure where the key is two ints (lat and lon). What's the simplest data structure for that?
I thought of two ways so ...
4
votes
1answer
257 views
Best Way to log API Calls, per minute / per hour
We are using reverse-geocoding in a rails webservice, and have run into quota problems when using the Google reverse geocoder through geokit. We are also implementing the simple-geo service, and I ...
3
votes
1answer
209 views
How to reverse geocode serverside with python, json and google maps?
I'm trying serverside reverse geocoding that can get me a json response and now I want to get 2 or 3 variables from the json response:
I'd like to parse for instance this data and end with eg.
...
3
votes
1answer
115 views
Get zip codes in a 25 mile radius Android
Does android have the ability to receive a zip code from an edit text box and then get the zip codes in a 25 (or whatever) radius to use in my query?
3
votes
2answers
198 views
Assign lat/long to zip codes
I have a dataframe latitude and longitude points in R. Using the R data science toolkit, I can assign these points to Country/State/County/City/Constituency/Neighborhood, which is useful.
I'd like ...
3
votes
2answers
191 views
? marks coming from reverse geocoded response
So someone from Russia made a reverse geocoding response from my website. I parse the Json and concatenate city and state into one string on the client side. This is what that concatenated string ...
3
votes
1answer
640 views
Reverse Geocoding Code
I've been working on putting together the Javavscript code for Reverse Geocoding in Google maps. I thought I'd solved all the issues I had, but I'm still having problems.
When I embed the Javascript ...
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
750 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?
3
votes
1answer
12k views
Reverse Geocoding With Google Map API And PHP To Get Nearest Location Using Lat,Long coordinates
I need a function to get an nearest address or city from coordinates(lat,long) using google map api reverse geocoding and php... Please give some sample code
3
votes
5answers
2k views
Reverse Geocoding Without Web Access
I am working on an application where one of the requirements is that I be able to perform realtime reverse geocoding operations based on GPS data. In particular, I must be able to determine the ...
2
votes
1answer
31 views
objective c how to get placemarks of given coordinates
I have a question related to reverse geo-coding.
In my app, I have some coordinates (not my current coordinates) and I want to convert them into placemarks. I've dug a lot of websites and codes but ...
2
votes
1answer
59 views
FINDING STREET ADDRESS
I have a question for the Google maps site. I am a private EMS dispatcher and we do not have expensive programs but I was hoping that there was a answer for me.
Does anyone one know of a way to find ...
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
3answers
153 views
What is the best way to interpret user's location beside Geocoder
So I made an app which access the user location and then interpret (reverse geocoding) it with the Geocoder like this:
Geocoder gc = new Geocoder(ctx, Locale.getDefault());
List<Address> ...
2
votes
6answers
3k views
Retrieving Postal Code with Google Maps Javascript API V3 Reverse Geocode
I'm trying to submit a query using the postal code to my DB whenever the googlemaps viewport center changes. I know that this can be done with reverse geocoding with something like:
...
2
votes
5answers
1k views
Formatting double to latitude/longitude human readable format
If the formula for converting latitude or longitude to double is
((Degree) + (Minute) / 60 + (Second) / 3600) * ((South || West) ? -1 : 1)
then what's the formula for parsing degrees, minutes, ...
2
votes
3answers
479 views
How to get Phone Number from Latitude & Longitude
I have a bunch of restaurants in an Excel. All these restaurants have Lat/Long co-ordinates. Sadly in this Excel their phone number is missing. So If I want to book a reservation at a particular ...
2
votes
1answer
278 views
How to make a Google Maps address - like lookup
You've probably all seen the maps.google.com.au address lookup. Start typing into the text box and your address auto completes in the list before you've finished. It also bolds the matching sections ...
2
votes
3answers
274 views
Algorithm to find the closest segment to a point among many segments (Reverse Geocoding)
I have a set of segments defined by two points. Given a point how can I discover the closest segment to such point?
I have already written an algorithm that computes the distance between a point and ...
2
votes
5answers
448 views
List of GeoCordinates to Postal/Zip Code
Is there a publically available List or a database that has geo-coordinates to Postal/Zip Code mapping ?
2
votes
1answer
134 views
Is there any service returning ZIP Codes on given city/satate?
is there any server available that i can use for getting zip codes on the basis on city/state ?
Thanks
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
0answers
57 views
Google Maps reverse geocoding returns shorter name
I am using reverse geocoding in Google Maps to get an address from a LatLng position.
However, the formatted address (formatted_address) returned in the result is shorter than the address that I get ...
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
0answers
113 views
Batch reverse geocoding
Recently I found myself in need to perform large batch reverse-geocoding operations.
Large means something about 20k points per request.
I was looking at Nominatim as standalone server. But there is ...
1
vote
0answers
210 views
Constructing Intersections from Google Maps API
Problem:
I am trying to reverse geocode a lat/long into a closest street intersection using Google Maps API V3. Also, for now, this doesn't have to be super accurate-- as I am just trying to ...
1
vote
1answer
46 views
Google Geocoding UK address does not get listed
I followed the examples in following site,
http://code.google.com/apis/maps/documentation/geocoding/
So I expected following url would give me UK addresses. But it is still giving me US address. Any ...
1
vote
0answers
101 views
could not connect to the internet
I'm using CLLocationManager to determine the current location and i'm using maps.google.com for reverse geocoding. Whenever I switch from wifi to 3g network and try to run my app which gets the ...
1
vote
1answer
213 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
2answers
85 views
Is there a python module, which can turn geocoordinates into the name of the corresponding city?
I have a bunch of coordinates and I want to transform them to human readable addresses. Is there a way to achieve this? It would be great if i can get the name of the city where the coordinates are ...
1
vote
1answer
417 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
0answers
172 views
Android's Geocoder returns an error when on 3G but succeeds on WiFi
I have implemented an application that requires some geocoding (getting coordinates from addresses) and some reverse geocoding (getting address from coordinates). I have implemented both without much ...
1
vote
2answers
1k views
Forward geocoding on iOS
Map Kit currently only has support for reverse geocoding (coordinates to address), not forward geocoding (address to coordinates). I see another SO post mentioned this, and a few people posted their ...
1
vote
0answers
148 views
GoogleMapsError 602: Can't reverse geocode on a lat/lng obtained by geocoding
I'm using the Python Google Maps wrapper (http://py-googlemaps.sourceforge.net/) and trying to get some driving directions. I've got a load of test locations in latitude/longitude pairs which I ...
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
1answer
248 views
Obtaining street name from postal code - Canada
I would like to know if anyone has been able to map a postal code to a street name in Canada.
Canada Post does this in their website through their systems. I tried submitting an AJAX POST request to ...
1
vote
2answers
295 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
1k views
Easiest way of getting reverse geocoded current location from iOS
I saw from another question here : Determine iPhone user's country that it is possible to get the current country the user of the iPhone is in.
And that is quite convenient for many uses. However, ...
1
vote
1answer
273 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 ...