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
-1
votes
1 answer

Mid-points does't make mark up on map?

I want to display multiple mid-points on geocode map but is does't work for me.below is the mid-point that I targeted to display on map. Source Code : function initialize(){var a,b,c={zoom:14,center:new…
-1
votes
1 answer

Google map geocoding with form submit

Problem: I have a form with some input fields, and i'm trying to convert the adress to geocode before it submits to my controller (using Spring MVC). But somehow my geolocation field is empty after the conversion... And for some reason the same code…
Chen Chen
  • 13
  • 4
-1
votes
1 answer

Google Maps API function does not return results in time

So I have an array of objects with the following properties: Address, Latitude, Longitude, and Title poi("139 Main St", 0, 0, "Farmer's Market" ), poi("18 N Hopkins Ave", 37.4455, -143.7728, "YMCA" ), poi("42 Universe St", 37.4855, -143.8781,…
invot
  • 533
  • 7
  • 30
-1
votes
1 answer

Add Marker to Google Map from Input Field with Geocode and No Page Refresh

I am trying to get help creating some code to do exactly what the title says... I want a user to Enter an Address into a form input field Have that address be GeoCoded by Google (already have this function together) Add a marker to the map I have…
wtaggin
  • 33
  • 3
-1
votes
2 answers

Convert geocode results into php variables to post to mysql database

I have used the tutorial here http://tech.cibul.net/geocode-with-google-maps-api-v3/ to create a page with map and draggable marker to display address and lat/long. Demo - http://www.calcunation.com/testgeo.php How do I captured those results and…
-1
votes
1 answer

How to get phone number of a Place using Google place API or any other better APIs

I tried Google place API, it's returning phone for a place "formatted_phone_number" or "international_phone_number". But it is not returning for all places (just for 1 in 100 places). But, Currently I want to get phone number for each place (For…
Naga Harish M
  • 2,779
  • 2
  • 31
  • 45
-2
votes
1 answer

Is there a way to change the language of Python's geocoder/geopy

There are 2 packages i'm using. geocoder import geocoder geocoder.osm([31.107, 103.146], method='reverse') Output: <[OK] Osm - Reverse [卧龙镇, 汶川卧龙特别行政区, 汶川县, 阿坝藏族羌族自治州, 四川省, 中国]> geopy from geopy.geocoders import Nominatim geolocator =…
elk
  • 82
  • 5
-2
votes
1 answer

for loop occuring after a console.log even though it occures earlier in code

when this code is written var holder = []; const compile = () =>{ let latitude = 0; let longitude = 0; for (let i = 0; i < holder.length; i++) { Geocode.fromAddress(holder[i].city).then( (response) => { …
Skiddzie
  • 1
  • 1
-2
votes
1 answer

How do I filter api geocode google maps?

How can I filter the result of geocode API with region or bounds parameters ? Example with filter region: https://maps.googleapis.com/maps/api/geocode/json?address=tokyo®ion=it Why return "Tokyo Japan" if I have filtered with parameter…
chiara
  • 1
-2
votes
1 answer

googleapis geocode return only one record for incomplete or ambiguous address

I want to normalize (server-side), an input address, and it could be incomplete or complete. Which APIs should I use? I have used geocode, place/autocomplete and place/textsearch APIs, but I don't get what I want. Incomplete address input…
chiara
  • 1
-2
votes
1 answer

api geocode error response "This IP, site or mobile application is not authorized to use this API key"

Env: project with reactjs using https://tomchentw.github.io/react-google-maps/ (Map with a SearchBox) I have problem about restriction api key google, and the problem : step to reproduce copy the project reactjs maps from…
wuku
  • 135
  • 1
  • 9
-2
votes
1 answer

how to extract coordinates from postal code in swift through API?

I am stuck here in extracting latitude and longitude for a given postal code. can anyone please help me figuring out this issue?
-2
votes
1 answer

Google maps api and google search provides different lat lang of a place

I am trying to get latitude and longitude of a place, however, its returning different value than the value provided by google search. $url =…
Aayush Dahal
  • 856
  • 1
  • 17
  • 51
-2
votes
1 answer

Find the location coordinates using zipcode in google geolocation api using python library googlemaps

I am using below code to find the location coordinates by taking zipcode from the user and want to suggest nearby stores to that zipcode. It is giving the following error: "REQUEST_DENIED The provided API key is invalid." I am running the…
1 2 3
50
51