What i need is the lat/long of the client(via browser)
Found some articles on the net,found some in stack overflow itself(an old article) Get GPS location from the web browser. it was answered almost 18months ago -- wondering if there's any other(more efficient) way of getting the information of the location of the user from the browser.
Soo far,found 2
using Maxmind
Other,using google's api
w3c's geo api will have downward compatibility issues: http://dev.w3.org/geo/api/spec-source.html ,so not choosing that.
Found a site, www.drumaroo.com -- requests for the location to be shared the 1st time when we drop into the site.Needed something similar
If your browser supports Geolocation then you have to access navigator. geolocation object which provides the method and determines the user location. It depends on the method that you call on the geolocation object whether you need to just fetch the location data or you want to keep it monitoring continuously.
Another way to get visitor's location is by using paid services from the list of APIs listed at IP Geolocation APIs . I'm going to show you how to identify user's location for free! CloudFlare serves tracing pages on every site hosted on their domain at /cdn-cgi/trace endpoint.
One way in which you can do this is by determining the user’s location from their IP Address (also referred to as Geo IP). Even though this method is not as accurate as the HTML Geolocation API (the level of accuracy is typically limited to the city the user is in), there are many instances where this is acceptable, for example:
The location provided by the user can be determined using GPS, WIFI, IP Geolocation, etc., which depends on the device used by the user. To protect the user’s privacy, it will first ask for permission to locate the device, and if the user grants permission, we can locate the device.
The user can be located by using following ways:-
The Best option will be to use options 2,3.4 together, You can do that in two steps:-
For various options available for this see the answer of this question
Try HTML5 geolocation
function init() {
var mapOptions = {
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = new google.maps.LatLng(position.coords.latitude,
position.coords.longitude);
var infowindow = new google.maps.InfoWindow({
map: map,
position: pos,
content: 'Location found using HTML5.'
});
map.setCenter(pos);
}
} else {
alert('Geolocation not detected');
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With