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

What are the mandatory and optional address fields in geocode?

What are the mandatory and optional address fields in geocode? As the address format is different for different countries throughout the world, what is the format that needs to be used in geocode .Is there a specific format for it, like mandatory…
Sowmya
  • 53
  • 1
  • 2
  • 6
0
votes
2 answers

What libraries/services (paid, or free) exist that clean and validate addresses?

The service or library that cleans the address needs to be callable from a custom .NET wrapper service or library. There is no UI requirement to display a map, or track delivery of a physical package to a postal…
Robotronic
  • 472
  • 1
  • 6
  • 13
0
votes
1 answer

Google geocode status always empty

I am new to geocode. I am getting the zip code from the user finding the lat and long and comparing it with a set of nearby locations who latitude and longitude are present in a JSON. So I have to loop through each event to compare. The geocode…
yesh
  • 2,052
  • 4
  • 28
  • 51
0
votes
1 answer

twitter Search geocode api returning wrong results

I'm using the geocode search api, but its returning tweets which are not actually from around my location. API :…
Madhu V Swamy
  • 263
  • 2
  • 14
0
votes
1 answer

Google Maps - Getting results[0].formatted_address from concatenated results[1].formatted_address

The address I have is a concatenated results[1].formatted_address retrieved from a database containing 6 numbers e.g 530456. I then geocoded it and placed a marker on a google map. This part is successful. I now want to display the full address,…
consprice
  • 722
  • 3
  • 11
  • 21
0
votes
1 answer

Google Maps Apiv3 - Geocode function to get latitude longtitude not working

I modified the javascript from https://google-developers.appspot.com/maps/documentation/javascript/examples/geocoding-simple to var geocoder; var postalArr = []; postalArr.push(249586); postalArr.push(266751); var map; function initialize(){ …
consprice
  • 722
  • 3
  • 11
  • 21
0
votes
1 answer

Android Geocode class

In which library Geocode class is located on android. Does it depend on type of device, cause I have a code which pulls location name like this: List
addresses = mGeocoder.getFromLocation(latitude, longitude, 1); And on tablet this code…
unresolved_external
  • 1,930
  • 5
  • 30
  • 65
0
votes
2 answers

Load MySQL Markers & Geocode On Same Google Map

I wonder whether someone may be able to help me please. I've put together this page which allows a user to geocode an address, either via a map click or by manually typing the address, and this works as expected. This code is a slight adaption of a…
IRHM
  • 1,326
  • 11
  • 77
  • 130
-1
votes
1 answer

geocode api call with address returns null if called from client but returns results in a browser call

A php client call to geocode api returns nothing (tried with file_get_contents()) while the same in a url from browser call returns results. For instance a call from .php client (using file_get_contents()) to geocode API…
Su Atm
  • 17
  • 2
-1
votes
2 answers

How can I get my accurate location with my phone number using python and geocode?

This is my code for getting the location of my phone number. I get the GPS location in my country, but not exactly where I am. Is there any way I can fix the code to do so? import phonenumbers import folium from target import number from…
KwameDickson
  • 25
  • 1
  • 5
-1
votes
1 answer

Geocode an address and set it as Initial Center of Google Map

So I'm using google maps API to display a map on my react webpage, I know how to set the initial center point and marker by inputting long and lat, however, now I am trying to geocode a text address using the geocoding API, and push that geocode to…
pGill
  • 1
  • 2
-1
votes
1 answer

React Native return of promise

I have a bunch of code that should return me coordinates considering an address. The documentation of this module gives this example: Geocode.fromAddress("Eiffel Tower").then( response => { const { lat, lng } =…
Edoardo Trotta
  • 107
  • 3
  • 12
-1
votes
3 answers

python GeocoderError: Error REQUEST_DENIED

so it's like this: I need to find a location of where a photo was taken. I've managed to take the coordinate of the photo and save it in latitude and longitude variables but when I try to extract the city location of those coordinate via python i…
-1
votes
1 answer

Javascript - Returning a value from a nested function

I'm trying to ReverseGeocode an address from it's lat and long values and display in on a Bootstrap modal, and so I would like to update the variable 'startAddress' with the result from the ReverseGeocode function but I've been unable to. This is…
Andrew Fox
  • 69
  • 1
  • 7
-1
votes
1 answer

How to get only long and lat from address through googlemap's geocode API

I am working on a project that involves getting the longitude and latitude of addresses using the googlemaps api. Curently, when I get the geocode of an address, I get all geocode of that adress, but I would only like to get the longitude and…
cordmana
  • 121
  • 3
  • 12