42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
// ==UserScript==
|
|
// @id iitc-plugin-basemap-openstreetpam@jonatkins
|
|
// @name IITC plugin: OpenStreetMap.org map tiles
|
|
// @category Map Tiles
|
|
// @version 0.1.1.@@DATETIMEVERSION@@
|
|
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
|
|
// @updateURL @@UPDATEURL@@
|
|
// @downloadURL @@DOWNLOADURL@@
|
|
// @description [@@BUILDNAME@@-@@BUILDDATE@@] Add the native OpenStreetMap.org map tiles as an optional layer.
|
|
// @include https://www.ingress.com/intel*
|
|
// @include http://www.ingress.com/intel*
|
|
// @match https://www.ingress.com/intel*
|
|
// @match http://www.ingress.com/intel*
|
|
// @grant none
|
|
// ==/UserScript==
|
|
|
|
@@PLUGINSTART@@
|
|
|
|
// PLUGIN START ////////////////////////////////////////////////////////
|
|
|
|
|
|
// use own namespace for plugin
|
|
window.plugin.mapTileOpenStreetMap = function() {};
|
|
|
|
window.plugin.mapTileOpenStreetMap.addLayer = function() {
|
|
|
|
//OpenStreetMap tiles - we shouldn't use these by default - https://wiki.openstreetmap.org/wiki/Tile_usage_policy
|
|
// "Heavy use (e.g. distributing an app that uses tiles from openstreetmap.org) is forbidden without prior permission from the System Administrators"
|
|
|
|
osmAttribution = 'Map data © OpenStreetMap contributors';
|
|
var osmOpt = {attribution: osmAttribution, maxNativeZoom: 18, maxZoom: 21};
|
|
var osm = new L.TileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', osmOpt);
|
|
|
|
layerChooser.addBaseLayer(osm, "OpenStreetMap");
|
|
};
|
|
|
|
var setup = window.plugin.mapTileOpenStreetMap.addLayer;
|
|
|
|
// PLUGIN END //////////////////////////////////////////////////////////
|
|
|
|
@@PLUGINEND@@
|