Questions tagged [geocode]

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.

Geocoding is a method to assign spatial coordinates - like longitude and latitude on the Earth's surface - to a data record or object which represents an address or other geographic data.


Useful links


Related tags

756 questions
0
votes
1 answer

Get nearest events for a user

In my application (iOS) i'm able to get the users current location. I also have a list of events in my database with the addresses and proper geocoding (latitude and longitude). My question is, with the users current location and the…
KVISH
  • 12,923
  • 17
  • 86
  • 162
0
votes
1 answer

REQUEST_DENIED:: This IP, site or mobile application is not authorized to use this API key. error while accessing geocode service

Invoking the Geocode web service through IBM application server. and below is the Geocode service URL. https://maps.google.com/maps/api/geocode/xml?address=1601%2BRutherford%2BLn%2CAustin%2C78754%2CTX&sensor=false&key=generated key from google I…
user3520811
  • 11
  • 1
  • 3
0
votes
0 answers

Google's Geocode is ignoring the address

When inputting the following address into google's geocode API, it seems to be ignoring the street address completely. Searching this address in google works fine. 205-9 Nonhyun-dong, Seoul, South…
0
votes
1 answer

Google Maps API V2 Android - Geocoder Issue

Im using google Maps API V2. In this application im attempting to get the users current location and view it on the map aswell as show the address i.e. street, city, country etc in the textView. So ass the app starts it shows your current location…
user3247335
  • 181
  • 2
  • 5
  • 16
0
votes
0 answers

Geocode returns ZERO_RESULTS only in my country

Why is it doing that? My country is North Cyprus and whenever I click any place within my country it returns zero_results error code but if I click any other countries place like Turkey and/or Los Angeles, I successfully get the address, city…
Atik
  • 89
  • 1
  • 1
  • 12
0
votes
2 answers

R twitteR searchTwitter geocode warning/error

I'm trying to pull tweets using the twitteR package, but I'm having an issue getting them through the searchTwitter function when I specify a geocode the way they have it in their docs. Please see code below: #Oauth code (successful…
lrcusack
  • 3
  • 3
0
votes
0 answers

Google API Geocode and cUrl, "String could not be parsed as XML"

$url="https://maps.googleapis.com/maps/api/geocode/xml? address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false&key=..." $ch = curl_init($url); $response = curl_exec($ch); curl_close($ch); $response =…
0
votes
6 answers

How to pass a variable from one class to another in a URI?

This is what I have so far which calls a GetCoordinates method and navigates to the map on a button click. I'm wondering though how I would pass over the coordinate data. Does anyone know how I could pass the MyGeoPosition variable of type…
Brian Var
  • 6,029
  • 25
  • 114
  • 212
0
votes
1 answer

Create and store the geo-location data

I'm creating rails application where it allow users to add geo-location data for restaurants, shops, etc., to a (Google) map and query it. First I started with http://geoapi.com, as there is a feature for creating our own entities and querying…
randika
  • 1,519
  • 3
  • 18
  • 39
0
votes
1 answer

Error using Java API for Google geocoder

I need to geocode address in Java but below code throws UnknownHostException. The link I referred is http://code.google.com/p/geocoder-java/ final Geocoder geocoder = new Geocoder(); GeocoderRequest geocoderRequest = new…
user2359634
  • 1,275
  • 5
  • 14
  • 27
0
votes
1 answer

block until reverseGeocode has returned

I am trying to find a user's location from a coordinate to save into my database. To find the location name I am using reverseGeocode. However since it is a block method my self.locationName will return (and save as nil) into the database. So I have…
Sarah92
  • 671
  • 4
  • 12
  • 29
0
votes
2 answers

Obtaining longitude/latitude by method other than navigator.geolocation?

Are there any other methods besides using navigator.geolocation to get access to a user's longitude and latitude location in JavaScript?
tfont
  • 10,891
  • 7
  • 56
  • 52
0
votes
1 answer

Search in Google Map v2 with marker

How Can I Geocode/Search a location or a certain place/point in Google Maps V2 Map Fragment and then,place a marker on that point of the mapfragment.
Etionloc
  • 21
  • 2
0
votes
1 answer

Searching and Address on Google Using AFNetworking

I've been trying to search an address on google and return the Latitude and Longitude of that address. I'm almost there =D The problem is.. I get a giant json back and I'm not sure how to get only the Latitude and Longitude. I'm using…
César Martins
  • 95
  • 1
  • 1
  • 6
0
votes
1 answer

3 different urls 3 different ways for geocoding.What is the correct way of doing it?

All I want is to get the geocode for the given address.Im doing it in Java. Earlier I used the url like "http://maps.google.com/maps/geo?q=" +URLEncoder.encode(addrToFind, ENCODING) + "&output=csv&key=" + MyKEY it returned me comma separated result…
user1759484
  • 43
  • 3
  • 7