Questions tagged [google-geocoder]

The Geocoding API is a service that provides geocoding and reverse geocoding of addresses.

The Geocoding API is a service that provides geocoding and reverse geocoding of addresses.

Geocoding is the process of converting addresses (like a street address) into geographic coordinates (like latitude and longitude), which you can use to place markers on a map, or position the map.

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

This service is also available as part of the client-side Google Maps JavaScript API, or for server-side use with the Java Client, Python Client, Go Client and Node.js Client for Google Maps Services.

982 questions
-2
votes
1 answer

Geocode with the address instead of coordinates using Coffee Script

I have initialised a map using the Google Maps JavaScript API but I've an example here using the latLng/coordinates and I would like to use the address instead. I'm assuming I would have this under the "map.addListener" but I'm not sure of what to…
-2
votes
1 answer

Google Maps Infowindow issue after Geocode adaptation

I switched my code from the lat-lang system to the geocode API in order to resolve addresses, but unfortunately, the Google Maps Infowindows don't work properly. Only a few of them are displayed, with wrong information. Here there is my…
-2
votes
1 answer

R Geocode with google with search restrictions to a country

I am trying to filter out the search results to be from a certain country only since at times the API returns random latitude and longitude. Here is the code I have library(ggmap) # Select the file from the file chooser #fileToLoad <-…
JKMburu
  • 37
  • 6
-2
votes
1 answer

Search on GoogleMap

I develop an Android app. I want to create a search system on GoogleMap using SearchView. I want to get multiple place names from the entered string (as in the original search on Google Maps), but Geocoder always returns a List with a single…
-2
votes
2 answers

google maps Geocoder Returns response for canada in french, while I need the response in english

My Project having a dropdown of states/Province of canada, I select those state based on zip code find out the city or state by google.geocoder While i am using for canada geocoder.geocode response in french while I need the response in english. …
Prakash
  • 3
  • 1
  • 2
-2
votes
1 answer

Bulk API request for Google geo-coding API

I have a data-set of 16 Millions for which I will send the address etc to Google Geocoding API and get the lat-longs. Right now we are making an API request for POI by POI, I'm wondering if we can do bulk /batch request, where in which I send around…
Vineel
  • 1,630
  • 5
  • 26
  • 47
-2
votes
1 answer

android Google Map language as Locale language

As Google-Map App in our phone shows the different languages as per region with English. I want to implement same in my app also. But i can not do this in android. can you please help me to get out of it. Set Google Map language as Locale…
-2
votes
1 answer

trouble loading google map from a list of address

I have a problem and I really tried everything! I have a page in my website that loads a google map taking a list of address from a mysql database. It was working but somehow now it's not working anymore. Here's the script that loads the map:
-2
votes
1 answer

Building a store locator using Jekyll

I am currently using Jekyll 3.30 and I am looking to build a store locator. I am planning on the current functionality. Goes to the Locator page Types in Zipcode / Postal code Selects Number of Miles Away -> 20 Miles / 40 Miles / 60 Miles List…
Derek
  • 39
  • 1
  • 6
-2
votes
1 answer

Need country state borders geofences from google map or xml file

Here i want india state border geofences. is there any way to download state borders from google map ? Or is there any possible solution to generate it from google earth with kmz/kml format. like, state border image Is there any possible way to get…
-2
votes
3 answers

How can i get my address without using GPS in android?

I want to make app without use of GPS, and my app is using user's address. so for that i want any idea of getting address without GPS. I want address, not latitude and longitude. Geocoder can be use for getting address but its again using GPS.…
-2
votes
1 answer

Instantiating Geocoder causes NullPointerException

Instantiating the Geocoder causes my app to crash with NullPointerException. This is my code (only single Activity): public class MapsActivity extends FragmentActivity implements OnMapReadyCallback { private final int MAX_RESULTS = 1; //if…
Kaarel Purde
  • 1,255
  • 4
  • 18
  • 38
-2
votes
1 answer

Using Client Side Script For Google Geo Location

I'm creating a website that uses Google Geocoding for site registration. At the moment the code I'm using is server side but I would ideally like to have this as a client side script. How do I convert this: $id= mysqli_real_escape_string($con,…
user2737457
  • 293
  • 1
  • 5
  • 19
-2
votes
1 answer

Google geocode is late (still one step behind)

I put there my whole code. Trying to determine location address. My script should create still one marker with geocoded address (in console - variable kktina). But, unfortunately, there isn't everything OK. Because by script still resolves previous…
-3
votes
1 answer

Convert from latlang to address using Geocoding Not working Android Kotlin

this is my fuction private fun getAddress(latLng: LatLng): String { val geocoder = Geocoder(this) val addresses: List
? val address: Address? var addressText = "" try { addresses =…
1 2 3
65
66