-
Notifications
You must be signed in to change notification settings - Fork 0
/
iitc-plugin-mml-tiles.user.js
65 lines (56 loc) · 2.66 KB
/
iitc-plugin-mml-tiles.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// ==UserScript==
// @id iitc-plugin-mml-tiles@ijlind
// @name IITC Plugin: Maanmittauslaitos Map Tiles
// @category Map Tiles
// @version 0.1.0
// @description Adds Maanmittauslaitos map tiles to base layers
// @downloadURL https://github.com/ijlind/iitc-plugins/raw/master/iitc-plugin-mml-tiles.user.js
// @include https://*.ingress.com/intel*
// @include http://*.ingress.com/intel*
// @match https://*.ingress.com/intel*
// @match http://*.ingress.com/intel*
// @grant none
// ==/UserScript==
function wrapper(plugin_info) {
// ensure plugin framework is there, even if iitc is not yet loaded
if (typeof window.plugin !== 'function') window.plugin = function() {};
//PLUGIN AUTHORS: writing a plugin outside of the IITC build environment? if so, delete these lines!!
//(leaving them in place might break the 'About IITC' page or break update checks)
plugin_info.buildName = 'iitc';
plugin_info.dateTimeVersion = '20171411.21732';
plugin_info.pluginId = 'basemap-mml';
//END PLUGIN AUTHORS NOTE
// PLUGIN START ////////////////////////////////////////////////////////
// use own namespace for plugin
window.plugin.mapTileMML = {
addLayer: function() {
var opt = {
attribution: 'Kartta: Maanmittauslaitos',
maxZoom: 18
};
var layers = {
'http://tiles.kartat.kapsi.fi/peruskartta/{z}/{x}/{y}.jpg': 'MML Peruskartta',
'http://tiles.kartat.kapsi.fi/taustakartta/{z}/{x}/{y}.jpg': 'MML Taustakartta',
'http://tiles.kartat.kapsi.fi/ortokuva/{z}/{x}/{y}.jpg': 'MML Ortoilmakuva'
};
for (var url in layers) {
var layer = new L.TileLayer(url, opt);
layerChooser.addBaseLayer(layer, layers[url]);
}
}
};
var setup = window.plugin.mapTileMML.addLayer;
// PLUGIN END //////////////////////////////////////////////////////////
setup.info = plugin_info; //add the script info data to the function as a property
if (!window.bootPlugins) window.bootPlugins = [];
window.bootPlugins.push(setup);
// if IITC has already booted, immediately run the 'setup' function
if (window.iitcLoaded && typeof setup === 'function') setup();
} // wrapper end
// inject code into site context
var script = document.createElement('script');
var info = {};
if (typeof GM_info !== 'undefined' && GM_info && GM_info.script)
info.script = { version: GM_info.script.version, name: GM_info.script.name, description: GM_info.script.description };
script.appendChild(document.createTextNode('(' + wrapper + ')(' + JSON.stringify(info) + ');'));
(document.body || document.head || document.documentElement).appendChild(script);