How to simulate latitude and longitude values in my browser (for geolocation testing)?

半城伤御伤魂 提交于 2019-12-04 14:07:24

Faking geolocations

There are many reasons why you would want to fake your location in firefox. One good reason would be “un-faking” your location on computers with no wlan cards, e.g. at work, or where there’s no data available for the WLANs around you. All you need for faking is a text file (eg. /home/username/.mynewlocation.txt) somewhere on your computer with the following content:

{"location":{"latitude":50.941863,"longitude":6.958374, "accuracy":20.0}} 

The path in Firefox to this file is: file://home/username/.mynewlocation.txt Type about:config in your location bar, confirm the warning, search for geo.wifi.url, and replace the old url (https://www.google.com/loc/json) with your new one from above. Restart firefox, enjoy your new location :-)

Explanation: latitude/longitude => the location you want to have, go to google maps, select location, click on “Link” and use the values from the ll= parameter accuracy => the accuracy you want to announce, in meters.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!