Questions tagged [reverse-geocoding]

Reverse geocoding is the process of converting geographic coordinates into a human-readable address.

The term geocoding generally refers to translating a human-readable address into a location on a map.

The process of doing the opposite, translating a location on the map into a human-readable address, is known as reverse geocoding.

878 questions
-1
votes
1 answer

How can i get all locations within 30 meter radius of my current location ios

For my project, I want to find/drop pins on nearby location.
Sadia
  • 462
  • 1
  • 5
  • 13
-1
votes
1 answer

Google Maps v3, reverse Geocoding and multiple Infowindow

I'm working on a google map v3. On this map I want display several markers each one with its Infowindow where shows some information about that point. The source of information is an javascript array with some data for each point, and up here …
-2
votes
1 answer

Python reverse geocoding to extract postal code from 'googlemaps'

I've been trying to reverse geocode a csv of lat and long data to find the postal codes that correspond to the coordinates. I have an API from google and have attempted using pygeocoder, however it fails to recognise an API (see code below). import…
CWC_23
  • 1
  • 1
-2
votes
2 answers

how to change value of a var in reverse geocoding function

I am trying to get address info for my project. I can see the address by alert() method if i write it inside the geocode function. but if i outside of the function, it returns undefined. tried to write the variable name like window.adres but didnt…
gks
  • 1
  • 4
-2
votes
1 answer

Google maps' reverse-geocoding returns arrays with different sizes for different cities and locations. How am I supposed to guess which array to pick

Let me first give you an example of the data returned after selecting 2 different cities - Tokyo and London. Tokyo: address_components: Array(9) 0: {long_name: "日本ドクターズビル", short_name: "日本ドクターズビル", types: Array(1)} 1: {long_name: "22", short_name:…
Onyx
  • 5,186
  • 8
  • 39
  • 86
-2
votes
1 answer

Is it possible to only avail Google's Geocoding Serve?

Ever since the new pricing took place, I've been confused with their documentation. I don't know where to see the details about this. (Or I'm not really looking properly, pardon me.) So is it possible to only avail Google's Geocoding Service?…
-2
votes
1 answer

How to get countryShortName, division, stateShortName, subLocality etc fields from Reverse Geo Coding from current location in Maps Swift

I am showing map in my application for current location. So, I am trying to get reverse geo coding from current location to get the data for current location details in MKMapView. func getAddressFromLatLon(coords: CLLocation) { let loc:…
-2
votes
1 answer

How to get only street/road coordinates via reverse geocoding (Google Maps API)

I'm looking for a solution to get data to create a simple roads-only map. Within a small area specified by lat/long I need data that allows me to draw custom lines between given street coordinates (start and endpoints are basically enough and only…
C-H-a-P
  • 217
  • 2
  • 9
-2
votes
1 answer

Reverse Geocoding in Javascript returns MissingKeyMap error

I am trying to get formatted address of customer who access my web page. For that I wrote function to get lat long and then Reverse geocode it to formatted address.