Is there a way to get the users location without having the user install Google Gears? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T12:00:08Z http://stackoverflow.com/feeds/question/313805 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/313805/is-there-a-way-to-get-the-users-location-without-having-the-user-install-google-g 3 Is there a way to get the users location without having the user install Google Gears? Thomaschaaf 2008-11-24T10:04:04Z 2009-05-26T11:37:27Z <p>I don't want to have the user install Google Gears so I can show him his guessed location. Is there a way to get the location without having to use Google Gears?</p> <p>I have found <a href="http://www.wipmania.com/de/blog/google-geolocation-api/" rel="nofollow">http://www.wipmania.com/de/blog/google-geolocation-api/</a> but it does not offer an example.</p> http://stackoverflow.com/questions/313805/is-there-a-way-to-get-the-users-location-without-having-the-user-install-google-g/313812#313812 4 Answer by Stefan Mai for Is there a way to get the users location without having the user install Google Gears? Stefan Mai 2008-11-24T10:08:36Z 2008-11-24T10:36:21Z <p>This is typically called IP Geolocation.</p> <p>An example is <a href="http://www.geody.com/geoip.php" rel="nofollow">here</a>.</p> <p>The thing is, most sites (if you plan on calling this as a web service) will charge you for it. Otherwise, throw together a web service that grabs a geolocation page, parses it for the address, and returns that piece of information.</p> <p>In PHP, this seems to work pretty well:</p> <pre><code>&lt;?php if(isset($_GET["ip"])){ echo geolocate($_GET["ip"]); } function geolocate($ip){ $raw_html = file_get_contents("http://www.geody.com/geoip.php?ip=$ip"); if(preg_match('/Location:(.*)/',$raw_html,$matches)){ $location_raw = $matches[1]; //Get rid of pesky HTML tags $location = preg_replace("/&lt;[^&gt;]*&gt;/","",$location_raw); return $location; }else{ return "ERROR"; } } </code></pre> http://stackoverflow.com/questions/313805/is-there-a-way-to-get-the-users-location-without-having-the-user-install-google-g/313847#313847 2 Answer by joseph.ferris for Is there a way to get the users location without having the user install Google Gears? joseph.ferris 2008-11-24T10:40:38Z 2008-11-24T10:40:38Z <p>One thing to watch out for with an geolocation service or library is that they will never be 100% accurate. We use one, <a href="http://www.ip2location.com/" rel="nofollow">IP2Location</a>, and it actually has been a steady source of complaints to our customer service department. We are looking at ways to alter the behavior of the site and weighing the factors of removing it completely.</p> <p>The problem lies in the fact that the burden of associating the IP with a user is with the users ISP. They have large blocks of IP ranges, and they register which blocks belong to a specific location. The problem is that ISPs often don't update this information when they shift blocks or a block covers too large of an area.</p> <p>For example, I live about sixty miles north of Manhattan, but my IP often shows that I am in Chicago with most of the lookup tools. I have FIOS, and have talked to a couple of other people who have confirmed the same behavior.</p> http://stackoverflow.com/questions/313805/is-there-a-way-to-get-the-users-location-without-having-the-user-install-google-g/313946#313946 7 Answer by aemkei for Is there a way to get the users location without having the user install Google Gears? aemkei 2008-11-24T11:39:04Z 2008-11-24T11:39:04Z <p>Google provides a way to get the user location via it's <a href="http://code.google.com/apis/ajax/documentation/#ClientLocation" rel="nofollow">AJAX API loader</a>. This will even work without Gears installed. Simply include a script tag pointing to the JsAPI:</p> <pre><code>&lt;script type="text/javascript" src="http://www.google.com/jsapi?key=ABCDEFG"&gt; &lt;/script&gt; </code></pre> <p>When an application makes use of the AJAX API loader, the loader attempts to geo locate the client based on it's IP address. If this process succeeds, the client's location, scoped to the metro level, is made available in the google.loader.ClientLocation property. If the process fails to find a match, this property is set to null.</p> <pre><code>if (google.loader.ClientLocation){ var center = new google.maps.LatLng( google.loader.ClientLocation.latitude, google.loader.ClientLocation.longitude ); map.setCenter(center); } </code></pre> <p>When populated, the google.loader.ClientLocation object is populated with the following metro-level granularity properties:</p> <ul> <li><code>ClientLocation.latitude</code> — supplies the low resolution latitude associated with the client's IP address</li> <li><code>ClientLocation.longitude</code> — supplies the low resolution longitude associated with the client's IP address</li> <li><code>ClientLocation.address.city</code> — supplies the name of the city associated with the client's IP address</li> <li><code>ClientLocation.address.country</code> — supplies the name of the country associated with the client's IP address</li> <li><code>ClientLocation.address.country_code</code> — supplies the name of the ISO 3166-1 country code associated with the client's IP address</li> <li><code>ClientLocation.address.region</code> — supplies the country specific region name associated with the client's IP address</li> </ul> http://stackoverflow.com/questions/313805/is-there-a-way-to-get-the-users-location-without-having-the-user-install-google-g/742541#742541 1 Answer by Jeremy for Is there a way to get the users location without having the user install Google Gears? Jeremy 2009-04-12T22:23:38Z 2009-04-12T22:23:38Z <p>If your users are on mobile, <a href="http://xtify.com" rel="nofollow">Xitfy</a> is also a free option. They have a small client that after the user agrees can be seamlessly installed on their handset. You can then call a REST based api to get their exact lat/lon sourced from gps / wifi or cell tower.</p> <p>They support Android, Windows Mobile, BlackBerry and Symbian which covers almost all smartphones.</p>