Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any easy ways to override the default behaviors of the geolocation api and just hard code your current location?

I think this would be useful for testing and for privacy reasons (providing fake location data)

I thought there was an add on for this but I can't seem to find one. Only option right now seems to be changing the about:config geo.wifi.url to some alternative webservice, which I consider overly complicated.

Any ideas?

Thanks

Ideal Scenario

Somebody implements an add-on where a google map appears and I can pick a new default location.

share|improve this question
Such an ideal scenario has materialized - there's a Manual Geolocation chrome extension on the chrome webstore now. – ronme Jan 12 '12 at 11:53

6 Answers

up vote 8 down vote accepted

The geo.wifi.url does not need to be a webservice. You can also set it to a local uri with file://...

The file should be a json file with content like this:

{"location": {
              "latitude": 48.777025000000002, 
              "longitude": 9.1713909999999998, 
              "accuracy": 10.0}}

Update: For Firefox 9+, the format has changed:

{
    "status": "OK",
    "accuracy": 10.0,
    "location": {"lat": 48.777, "lng": 9.171}
}

Or you can combine them to support both:

{
    "status": "OK",
    "accuracy": 10.0,
    "location": {
        "lat": 48.777,
        "lng": 9.171,
        "latitude": 48.777,
        "longitude": 9.171,
        "accuracy": 10.0
    }
}

Update: it looks like manually setting this preference is blocked by the provider assuming the Google service. See Bug 716453

share|improve this answer

The easiest way is to navigate to about:config and then in the filter box enter geo.wifi.uri, double-click the only config row that shows up, and enter the value below after you replace xxx and yyy with the co-ordinates you get from a service like http://www.getlatlon.com/:

data:application/json,{"location":{"latitude":xxx,"longitude":yyy,"accuracy":10}}

This trick doesn't require any add-ons or local/hosted files. Make sure the value is without any spaces and is on a single line!

share|improve this answer
1  
For reference, the default value of this field is geoloc://www.google.com/loc/json – Jeevan Takhar Aug 15 '11 at 13:25
In Firefox 10 this seems to no longer work. – skolima Feb 4 '12 at 14:24

Geolocater is an experimental add-on that lets you edit your geolocation.

share|improve this answer
It's no more experimental. – PhoneixS May 2 '12 at 16:28

Hmmm, you can't mock navigator.geolocation directly - perhaps you can refactor your code that uses it to use another object - say customGeoLocation.

In production you can just set customGeoLocation to navigator.geolocation and in tests use a mock implementation of whatever functionality you use.

EDIT: Turns out you can replace functions on navigator.geolocation object but that is still useless if you are using a mock library (like JsMock) which needs to create a mock object. So you wouldn't be able to replace navigator.geolocation with a mock.

You can do the mocking yourself in this fashion:

var getCurrentPositionCalled = false;
navigator.geolocation.getCurrentPosition = function() { 
  getCurrentPositionCalled = true; 
};

//Your app code here
//...
assert(getCurrentPositionCalled);
share|improve this answer
"you can't mock navigator.geolocation". Incorrect. Sample forthcoming.... – Roatin Marth Dec 1 '09 at 15:05
Fair enough, see edit. – Igor Zevaka Dec 1 '09 at 22:39

I have wired up Google Latitude to Firefox geolocation. This lets you manually update your location in Google Latitude with a single mouse click, instead of looking up your latitude and longitude yourself and typing it into a local file. My article on the subject is Make Firefox Take Geolocation From Google Latitude.

The solution required a small amount of server-side coding (I provide source code in the article), but I am for the time being running this code as a free live service that you can use.

Cheers, MetaEd

share|improve this answer

In Chrome, you can use the Manual Geolocation chrome extension. It'll let you graphically choose your manual location.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.