OpenStreetMap IP Geolocation

Overrides the "Show My Location" button to provide location from IP geolocation

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        OpenStreetMap IP Geolocation
// @namespace   Violentmonkey Scripts
// @match       *://www.openstreetmap.org/*
// @grant       GM.xmlhttpRequest
// @connect     ip-api.com
// @version     1.5
// @author      CyrilSLi
// @description Overrides the "Show My Location" button to provide location from IP geolocation
// @license     MIT
// @require     https://update.greasyfork.org/scripts/533461/1652653/Get%20OpenStreetMap%20Leaflet%20object.js
// ==/UserScript==

unsafeWindow.onOSMReady(() => {
    if (!unsafeWindow.userscriptMap) {
        return;
    }
    GM.xmlhttpRequest({
        method: "GET",
        url: "http://ip-api.com/json/",
        onload: function(response) {
            ipJSON = JSON.parse(response.responseText);
            geoButton = document.getElementsByClassName("control-locate")[0].children[0];
            geoButton.parentNode.replaceChild(geoButton.cloneNode(true), geoButton);
            tooltips = document.getElementsByClassName("tooltip-inner");
            while(tooltips[0]) {
                container = tooltips[0].parentNode;
                container.parentNode.removeChild(container);
            }
            geoButton = document.getElementsByClassName("control-locate")[0].children[0];
            geoButton.addEventListener("click", ev => {
                unsafeWindow.userscriptMap.setView([ipJSON["lat"], ipJSON["lon"]], 12);
            });
            keyButton = document.getElementsByClassName("control-legend")[0].children[0];
            keyButton.click();
            keyButton.click();
        }
    });
});