// ==UserScript== // @id iitc-plugin-scale-bar@breunigs // @name IITC plugin: scale bar // @category Controls // @version 0.1.0.@@DATETIMEVERSION@@ // @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @updateURL @@UPDATEURL@@ // @downloadURL @@DOWNLOADURL@@ // @description [@@BUILDNAME@@-@@BUILDDATE@@] Show scale bar on the map. // @include https://*.ingress.com/intel* // @include http://*.ingress.com/intel* // @match https://*.ingress.com/intel* // @match http://*.ingress.com/intel* // @include https://*.ingress.com/mission/* // @include http://*.ingress.com/mission/* // @match https://*.ingress.com/mission/* // @match http://*.ingress.com/mission/* // @grant none // ==/UserScript== @@PLUGINSTART@@ // PLUGIN START //////////////////////////////////////////////////////// // use own namespace for plugin window.plugin.scaleBar = function() {}; window.plugin.scaleBar.setup = function() { // Before you ask: yes, I explicitely turned off imperial units. Imperial units // are worse than Internet Explorer 6 whirring fans combined. Upgrade to the metric // system already. if (window.isSmartphone()) { $('head').append(''); window.map.addControl(new L.Control.Scale({position: 'bottomright', imperial: false, maxWidth: 100})); } else { $('head').append(''); window.map.addControl(new L.Control.Scale({position: 'topleft', imperial: false, maxWidth: 200})); } }; var setup = window.plugin.scaleBar.setup; // PLUGIN END ////////////////////////////////////////////////////////// @@PLUGINEND@@