Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
5k views

Google's Geocoder returns wrong country, ignoring the region hint

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': ...
4
votes
1answer
141 views

Android Geocoder quota limits

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 ...
4
votes
3answers
207 views

High Volume Geocoding API?

I would like some recommendations on a high volume Geocoding API. I've reached out to Google and Yahoo so far. Google wants too much money for too little offering and Yahoo doesn't have a commercial ...
4
votes
5answers
862 views

Geocoding 5000 addresses in php script

I'm looking to geocode over 5000 addresses at once in a PHP script (this will only ever be run once). I have been looking into google as a potential resource for doing just this, however I've read ...
4
votes
1answer
497 views

Geocoding with Google Maps API - accuracy and limitations

It is easy to use the Google Maps API to find a specific street address and return the latitude and longitude. For example, link. However, it appears that typing in the name of a specific location, ...
3
votes
1answer
221 views

jQuery: performing some action before form is submitted

I have a page with a single form on it. The form contains a text box and a submit button. When the form is submitted, either by clicking the button, or by pressing enter in the textbox, I want to do ...
3
votes
3answers
246 views

Using Rx to Geocode an address in Bing Maps

I am learning to use the Rx extensions for a Silverlight 4 app I am working on. I created a sample app to nail down the process and I cannot get it to return anything. Here is the main code: ...
3
votes
2answers
585 views

Generate zip code based on City and State with Google API

Would there be a way to do a zip code lookup based on City/State input in a form? I'm thinking the Google geocode API might be the right direction. Any thoughts? I have a site built on Wordpress so ...
3
votes
1answer
297 views

Querying a perimeter around a Geocode-Location (Lat/Lon)

how can I search for geo-objects in a certain perimeter ? E.g. I have several objects with Lat/Lon coordinates stored in my DB. Now I want to retrieve all the objects which lie in a specific perimeter ...
3
votes
1answer
1k views

Google Maps API Geocode gives error “Invalid label” in Firefox

Today I struggled with the following: $.ajax({url:'http://maps.google.com/maps/api/geocode/jsonaddress=Karachi&sensor=false&output=json&callback=?', dataType: 'json', ...
3
votes
1answer
3k views

google maps export driving directions to kml file - java geogoogle

Sorry at first for my poor grammar. I am writing a program in Java using geogoogle (Google Geocoder Java API) http://geo-google.sourceforge.net/ I need from two specific points to get the walking ...
3
votes
2answers
322 views

Obtain coordinates of a point on a road

I have a range defined by an intersection and a number of feet away from the intersection. (e.g. 100 ft north of Washington St. & 5th St. to 300 ft south of Washington St. & 6th St.) I am ...
2
votes
2answers
34 views

javascript - google geocode - closure/looping issue

I am calling a google api function repeatedly in a loop. Each time i want to remove one element of the address array. for(var i = 0; i < AddressObject.addressToArray.length; i++ ){ ...
2
votes
1answer
84 views

How I can get places with specific types using Google Places API?

I need all locations of type cafe, gas_station, and restaurant using Google Places Api. Here is my query via the API: ...
2
votes
1answer
36 views

How do I discern a country from X/Y Coordinates (or Long/Lat)?

I have a number of XY coordinates and am looking to discern which country each of these are in, who knows a good service/way of doing this? I am working with MySQL & PHP, not that its really ...
2
votes
2answers
204 views

Using Twitter API with Python (geocode)

How could I make the following call in Python? Pseudocode version: jsonTwitterResponse = twitter.get(up to max of 3 tweets within 3km of longitude: 7, latitude: 5) print ...
2
votes
3answers
425 views

Calculate distance of two geo points in km c#

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 website ...
2
votes
3answers
359 views

Geocoder, how to test locally when ip is 127.0.0.1?

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 (my ...
2
votes
3answers
3k views

android - how to get current location latitude and longitude

I am using this code to get current location latitude and longitude but i am not getting current location latitude and longitude.anyone know the ans update here, thanks package ...
2
votes
2answers
269 views

google maps api geocoding

This question is regarding the google Maps API geocoding, I'm able to geocode an address and show the location, but this works when the address is valid. When it's not valid(there is an error),right ...
2
votes
1answer
343 views

Google Maps - Pre-geocoding many addresses?

I have about 1600 addresses that I need to plot on my map. I don't want to geocode at run time, because I believe it will take too long. Instead, I would like to geocode the addresses in advance, ...
2
votes
4answers
492 views

How to distinguish a NY “Queens-style” street address from a ranged address, and an address with a unit#

I need to distinguish between a Queens style address, from a valid ranged address, and an address with a unit#. For eg: Queens style: 123-125 Some Street, NY Ranged Address: 6414-6418 37th Ln SE, ...
1
vote
2answers
78 views

Google geocoding mutliple addresses in a loop with javascript, how do I know when everything is done?

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 ...
1
vote
1answer
70 views

Google Maps API JS: trying to convert the address to Lat Long

JavaScript Google Maps API V3 I'm trying to convert the address to Latitude/Longitude using geocode from Google Maps API v3 but it's not working. The rest of the code is working fine. I'm sure this ...
1
vote
2answers
69 views

how to make geocodes from two array lists in android

Hey Guys I have four integer array lists which were created after parsing a json file: JSONObject o = new JSONObject(s); JSONObject c = new JSONObject(s); JSONArray a = ...
1
vote
1answer
98 views

How can I search places with specific types using Google Places API?

I am using google place api to search specific types like(gas_station,cafes,shopping_malls etc...) here is link i am using ...
1
vote
1answer
229 views

How to get country from IP

Trying to get country from IP address. I've read a few articles online and a few answers on SO. So far have found Geoip which can use http://www.maxmind.com database. The example at this link ...
1
vote
1answer
71 views

Calculating geo coordinates along a trajectory

I am looking for an algorithm (php would be most ideal) that can, given two sets of coordinates (start and end), calculate the geographical coordinates along that path at given intervals (say every ...
1
vote
1answer
165 views

Converting address to geocode, just returns “undefined”, why?

This is what i have: http://jsfiddle.net/JhCKW/1/ Im using Google maps v3, Geocode. I made a function showAddress( param ). This takes the param, check if its a address if it is then it returns ...
1
vote
1answer
95 views

How to take 5 km points in all directions of a location, geocoding google api?

Ok so i have these cords: 55.623151, 8.48215 I would like to see the geo codes 5 km from north, south, east, west from this geo location above^. How can i do this?
1
vote
1answer
161 views

Search radius based on size of area - PHP / Google Maps API

I have a sql database search that currently has a search term and an address input - which is geocoded by google for lat/lng. Right now, I order the results first by relevance to the search term, and ...
1
vote
0answers
88 views

Geocode + Autocomplete + Rails

I am reading RailsCast #102 on AutoCompelte, however this describes how to do stuff with a .json file, however if I'm using something like Geocode it doesn't have such a thing since it's calling ...
1
vote
0answers
107 views

Rails geocoder setup

using the explanation here https://github.com/alexreisner/geocoder , I started setting up a geocoder for rails 3. I have this in my picture model class Picture < ActiveRecord::Base include ...
1
vote
1answer
78 views

Problems building geocommons geocoder

I've downloaded the geocommons/geocoder source and have one small sample TigerLine zip file from the census site saved into /opt/tiger/tl_2010_01_state10.zip I've tried to run the tiger_import tool ...
1
vote
3answers
145 views

What counts as a Geocode?

I'm working on an app that involves the Google Maps API and I'm worrying about the 2500 daily geocode limit. It's not clearly defined to me on what counts as a geocode though. For example: I can ...
1
vote
1answer
332 views

Why is Google Maps API refusing to plot my Polyline array?

I think the problem has something to do with how I am building the path array for my Polyline but there has to be a way to do it like this. The goal is to create an array of Geocode locations from an ...
1
vote
1answer
166 views

What is the difference between Bing Map Api's Search vs Geocode services?

I ask this because the interactive SDK sample for these two features appear to do the exact same thing with same behavior as well. anyone know? ...
1
vote
3answers
380 views

Stub out address geocoding during RSpec unit test

I'm using the geocoder gem to add geocoding functionality to one of my Active Record model classes. This works great, but I don't actually want the geocoding to fire during unit tests. I've tried ...
1
vote
1answer
249 views

find people within X miles of my city

I am working on a dating application in PHP: My application has a search page that searches suitable user profiles within certain distance of a person's location (need to specify the no. of miles/kms ...
1
vote
2answers
272 views

how to calculate geographical coordinates / which geo system is this?

I have a pair of geo coordinates I don't understand. Does anybody know this coordinate system and how to translate them to longitude and latitude in degrees? Long. 7662.251 West, Lat. 9144.590 North ...
1
vote
1answer
370 views

Geocoder doesn't always return a value

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 ...
1
vote
1answer
207 views

How can I GeoCode a table of addresses in SQL Server automatically?

Is there a way to geocode a table of addresses so that latitude and longitude columns can be updated with the correct details. Ideally I would like a system that will operate every so often, ...
1
vote
0answers
220 views

Getting Rails error 500: logs pointing to passenger and gmaps

I am currently running a rails app in production. Whenever i try to access my home page i get an error 500. This started happening recently so i have successfully run the app before. I realised that ...
1
vote
2answers
920 views

C# Stream Reader adding \n to XML

I use the StreamReader class to obtain XML for my GeoCoding process from Google. StreamReader srGeoCode = new StreamReader(WebRequest.Create(Url).GetResponse().GetResponseStream()); String GeoCodeXml ...
1
vote
1answer
57 views

Getting value of “i” from GEvent

I'm trying to add an event listener to each icon on the map when it's pressed. I'm storing the information in the database and the value that I'm wanting to retrive is "i" however when I output "i", I ...
1
vote
5answers
2k views

Country/City/state validation

I want to do the following things using PHP and jQuery https://www.careerbuilder.com/share/register.aspx?sc_cmp1=JS_LoginASPX_RegNow Steps Select a country from a dropdown list. The city dropdown ...
1
vote
1answer
1k views

Getting Region Data of geolocation using Google Maps API

Is there an easy way to determine a point's region in the world based on it's latitude and longitude? I have an entry form that a user enters in their address (city, state, and country). I then ...
1
vote
2answers
2k views

How do i do geocoding and routing with OpenStreetMap?

Because Google Maps API is not available in Israel (see here) I want to use OpenStreetMap. I'm confused by all the different ways to do geocoding, i.e. finding lat,long for an address. I'm also ...
0
votes
1answer
20 views

how to get lat/long from selected result

I have a search field that uses the google places api to autosuggest locations like so: <input type="text" id="addressInput" name="addressInput" class="span3 search-query" placeholder="Enter ...
0
votes
1answer
45 views

Geocoder autocomplete in android

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 the ...

1 2 3