geocode Questions
13
Solved
I'm using Google's Geocoder to find lat lng coordinates for a given address.
var geocoder = new google.maps.Geocoder();
geocoder.geocode(
{
'address': address,
'region': 'uk'
}, function(res...
Sudorific asked 15/4, 2010 at 16:20
7
I`d like calculate the distance of two geo points. the points are given in longitude and latitude.
the coordinates are:
point 1: 36.578581, -118.291994
point 2: 36.23998, -116.83171
here a webs...
5
I'm using the ggmap's geocode to find the latitude and longitude of different cities. It worked completely fine yesterday but I get an OVER QUERY LIMIT after only one request today.
In fact if I j...
Prelacy asked 23/3, 2016 at 10:26
4
Solved
I wan't to reverse geocode and get the address in two languages arabic and english so I want to get it in one language then change the language of the API and get the address in the other language,...
Greenhaw asked 15/8, 2011 at 13:21
2
On trying to search a particular address by postal code(2000) it does not return the expected formatted address correctly, but whereas on searching using the address(frederiksberg) instead of posta...
Polypus asked 26/4, 2018 at 8:10
2
I'm working with geocoder. On all devices the code works fine but on a Nexus 5 phone there is an exception in the logs.
My code:
override fun fromAddress(address: Address): Observable<Geolocat...
4
My Code looks like this:
var map = /*some google map - defined earlier in the code*/;
var geocoder = new google.maps.Geocoder();
var address = 'Some Address, Some Street, Some Place';
geocoder.geo...
Garrygarson asked 27/11, 2010 at 3:34
4
Solved
I'm trying to use the geocode function from the ggmaps library in R to get coordinates for specific locations. I'm able to use the function fine so far.
The issue I'm running into is that I would...
Markhor asked 21/12, 2015 at 19:29
5
Solved
I am able to successfully get lat/long and pass it to the geocoder to get an Address. However, I don't always get an address back. Seems like it takes a couple of attempts? I'm not sure why.
Is t...
Launalaunce asked 12/11, 2010 at 21:29
6
I can't get geocoder to work correct as my local ip address is 127.0.0.1 so it can't located where I am correctly.
The request.location.ip shows "127.0.0.1"
How can I use a different ip address (...
Cotoneaster asked 24/5, 2011 at 19:11
1
Solved
I am trying to create coordinates based on city with google maps, here is example what i have for now, i always get error?
var address = 'Zurich, Ch';
var geocoder = new google.maps.Geocoder();
...
Lithea asked 19/1, 2016 at 13:16
4
Solved
I've got a form that asks for a list of locations (not a lot, normally only 3 or 4 but that number is dynamic). When the form is submitted, I have to parse the data, use Google geocoding to get the...
Cephalization asked 29/1, 2012 at 10:13
2
Solved
I am trying to write a Java application that, given a city and a radius, returns all the nearby cities. I thought the Google Maps API would be able to do this, but I am getting no luck with t...
Lorenelorens asked 26/8, 2011 at 8:55
2
if Rails.env.development?
@current_location_geo = Geocoder.search(request.remote_ip).first
else
@current_location_geo = request.location
end
if !@current_location_geo.nil? && @current_...
Humph asked 12/12, 2014 at 5:24
1
Solved
I'm trying to figure out a way to show calculated distance between two point on a map using Geocoder. I have start_address and destination_address in my table which I ask for in my view, my model l...
Lipophilic asked 19/9, 2015 at 19:57
6
Solved
I'm trying to get the LatLng from google map geocode api. my code is below with address values is "New York, NY"
$.ajax({
url: 'http://maps.googleapis.com/maps/api/geocode/json',
data: {
sensor...
Bodyguard asked 4/3, 2011 at 8:26
2
I am newbie for the google apis.
I was trying to get a full address for search keyword using this
http://maps.googleapis.com/maps/api/geocode/json?address=surat&sensor=false
using this I go...
Raconteur asked 12/9, 2014 at 11:57
2
Solved
OK, I'm at half-wit's end. I'm geocoding a dataframe with geopy. I've written a simple function to take an input - country name - and return the latitude and longitude. I use apply to run the funct...
1
Solved
I am trying to reverse geocode coordinates and retrieve corresponding country codes using geopy. However, Geopy does not seem to provide a method for fetching country codes. So, I am trying to retr...
Blizzard asked 31/3, 2015 at 5:0
1
Solved
I'd like to show and hide a tooltip when mouseover / mouseout on the polyline path, the issue is that my polyline path has a stroke width 2 only, so is not easy to hit that area in the mouseover ev...
Diaphaneity asked 18/3, 2015 at 6:12
3
Recently Edwin Chen posted a great map of the regional usage of soda vs pop vs coke created from geocoded tweets inolving those words in the context of drinking. http://blog.echen.me/2012/07/06/sod...
2
Solved
Could someone advise on the quota limits to Google maps geocoding api? I'm using geocoding on android. The Google maps Api site states the limit is 2,500 per day. Is this total for the API key? or ...
Thorson asked 21/11, 2011 at 21:27
2
Solved
I have 5 digit zip codes, these are retrieved from Google Maps Api.
My dilemma is that I have to connect to a remote database which also contains addresses. If the address does not exist in that d...
Isoelectronic asked 22/2, 2013 at 21:20
2
Solved
I have a list of latitude and longitude coordinates, and wish to find out which country they all reside in.
I modified an answer from this question about lat-long to US states, and have a working ...
2
Solved
I've been googling my ass of trying to find someone that are having the same problem as me, without luck. So here's my problem:
I'm trying to implement a autocomplete suggestion of addresses as th...
Checkup asked 4/2, 2012 at 17:37
1 Next >
© 2022 - 2024 — McMap. All rights reserved.