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

How do I get tweets based on location only?

I am using the following: https://api.twitter.com/1.1/search/tweets.json?q=SearchTerm&geocode=37.781157,-122.398720,20km to get tweets from a certain location. I have noticed that the q parameter needs to have a value or else I get "The remote…
Atomic Star
  • 5,427
  • 4
  • 39
  • 48
0
votes
0 answers

Issue fetch lat and long from the given address in android

I am getting problem of getting latitude and longitude from the google url as shown below and i am using asynctask,no problem of network.i have address array which has 4 adderesses and i am using like below: for(int i = 0; i < address.length; ++i)…
Android Killer
  • 18,174
  • 13
  • 67
  • 90
0
votes
1 answer

Geocoder returning ZERO_RESULT and QUERY_LIMIT_REACHED

Ok, so I have a working (almost) geocoder built, that takes in an address or lat/lon combination, and suggests results see here: $(this).autocomplete({ source:function (request, response) { if (geocoder == null) { …
Alex Neigher
  • 887
  • 1
  • 10
  • 22
0
votes
2 answers

get Zero as longitude and latitude with every address in .net

In my asp.net application I was using Geocode to find latitude and longitude for given address and was saving these in database. Its very strange that, its was working perfectly from last 8 month but suddenly from 2 days its returning Zero for every…
0
votes
1 answer

How can I set a country using a Country Code with Nokia Maps?

I've read that you can search a country using a Country Code (I tried it with Nokia Here it's wonderful), the code from my country is "SV" (I'm from El Salvador) but I don't know how to implement. I found this codes in the API guide: Interface…
Federico Navarrete
  • 3,069
  • 5
  • 41
  • 76
0
votes
1 answer

geocode longitude and latitude from UK postcode?

Can this be done on the fly using PHP? I have a list of addresses with uk postcodes, but I need the longitude and latitude to use with google maps?
Bomber
  • 10,195
  • 24
  • 90
  • 167
0
votes
2 answers

SecurityException in Geocoder

I am getting a java.lang.SecurityException: Not allowed to bind to service Intent { act=com.android.location.service.GeocodeProvider pkg=com.google.android.location } while trying to do fetch geocode on my JellyBean device. Geocoder geocoder = new…
Alok
  • 453
  • 1
  • 4
  • 17
0
votes
1 answer

not able to find lat/long for an address

I have a javascript code, and want to find latitude/longitude for an address entered by a user. I am using following javascript code:
clint
  • 1,786
  • 4
  • 34
  • 60
0
votes
1 answer

PHP - zipcode distance function converting distance to miles

I've found some code on here to mathematically find the distance between two zipcodes. I'm using the Google geocode api to get the long and lat from each zipcode. Everything works fine but I'm wondering how to convert the $distance return into…
iRector
  • 1,935
  • 4
  • 22
  • 30
0
votes
1 answer

Google Geocode encodeAdress()

Having problems getting lat & lng from googles response. Google is responding some xml looking like : "location" : { "lat" : 53.55914120, "lng" : 10.00923520 }, I´m parsing this with var r =…
john Smith
  • 17,409
  • 11
  • 76
  • 117
0
votes
1 answer

Callback functions for syncing in javascript

I am trying to have a function in Node.js with Mongoose that is a .save function for an HTTP request and I am trying to extract the geocoordinates and save them as an array in the Mongoose Schema in MongoDB. However, it seems that I am having a…
user2009114
  • 371
  • 1
  • 7
  • 18
0
votes
1 answer

Rails 3 geocoder and the filtering an object

I'm trying to get the geocoder gem to work on an object that has been filtered using a has_many relationship like so user.rb has_one :profile has_many :roles name:string profile.rb belongs_to :user latitude,latitude:float, address:string,…
0
votes
1 answer

How to get city by latitude and longtitude?

I need to get city name by latitude and longtitude. (Use xcode) There is google with itself's api geocode, but it don't want to return nearest city (i need only nearest city) and it returns cyrilic names of places. How to solve my problem?
Timur Bernikovich
  • 5,660
  • 4
  • 45
  • 58
0
votes
1 answer

Better free option for google maps geocode

I'm using google maps to geocode. But I have 280k address to geocode, I would like to know a better option for this. Thank you. I looked for Bing and Yahoo! tutorial to make the geocoder, but nothing was found, only plotting tutorials.
Bovo
  • 45
  • 7
0
votes
1 answer

Geocoder v3 Autocomplete Hotel

We are running a website (www.taxileader.net/taxi-tegel.html) , where people can book a taxi from the airport to their destination. To book and calculate the distance between the starting address that normally is an Airport (latitude/longitude…