With the Ingress Intel map loaded over HTTPS the OpenStreetMap tiles currently are still loaded over HTTP. This is bad practice and causes a 'Mixed Content' warning in browsers such as Chrome or Firefox.
55 lines
1.9 KiB
JavaScript
55 lines
1.9 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://*.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.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"
|
|
|
|
var osmOpt = {
|
|
attribution: 'Map data © OpenStreetMap contributors',
|
|
maxNativeZoom: 18,
|
|
maxZoom: 21,
|
|
};
|
|
|
|
var layers = {
|
|
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png': 'OpenStreetMap',
|
|
'https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png': 'Humanitarian',
|
|
};
|
|
|
|
for(var url in layers) {
|
|
var layer = new L.TileLayer(url, osmOpt);
|
|
layerChooser.addBaseLayer(layer, layers[url]);
|
|
}
|
|
},
|
|
};
|
|
|
|
var setup = window.plugin.mapTileOpenStreetMap.addLayer;
|
|
|
|
// PLUGIN END //////////////////////////////////////////////////////////
|
|
|
|
@@PLUGINEND@@
|