1

Currently I have

if (navigator.geolocation) {
    navigator.geolocation.getCurrentPosition(function(position) {
        var geolocation = {
            lat: position.coords.latitude,
            lng: position.coords.longitude
        };
        var circle = new google.maps.Circle({
            center: geolocation,
            radius: position.coords.accuracy
        });
        places.setBounds(circle.getBounds());
    });
}

and want to use something like

if (google.loader.ClientLocation) {

    var latitude = google.loader.ClientLocation.latitude;
    var longitude = google.loader.ClientLocation.longitude;
    var city = google.loader.ClientLocation.address.city;
    var country = google.loader.ClientLocation.address.country;
    var country_code = google.loader.ClientLocation.address.country_code;
    var region = google.loader.ClientLocation.address.region;

I would like to use IP address instead of requesting user access.

Shawn J.
  • 11
  • 1

0 Answers0