This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
meshviewer/config.js

76 lines
2.0 KiB
JavaScript
Raw Normal View History

2017-11-10 19:23:20 +00:00
module.exports = function () {
return {
'nodeInfos': [
{
'name': 'Clientstatistik',
2021-11-03 20:26:03 +00:00
'href': 'https://stats.freifunk-leipzig.de/d/GVI39bqGk/nodespublic?orgId=1&refresh=5m&var-nodeid={NODE_ID}',
2021-11-16 21:02:10 +00:00
'image': '/render/clients/{NODE_ID}',
2021-11-03 20:26:03 +00:00
'title': 'Entwicklung der Anzahl der Clients innerhalb des letzten Tages'
2017-11-10 19:23:20 +00:00
},
{
2021-11-03 20:26:03 +00:00
'name': 'Traffic',
'href': 'https://stats.freifunk-leipzig.de/d/GVI39bqGk/nodespublic?orgId=1&refresh=5m&var-nodeid={NODE_ID}',
2021-11-16 21:02:10 +00:00
'image': '/render/traffic/{NODE_ID}',
2021-11-03 20:26:03 +00:00
'title': 'Traffic innerhalb des letzten Tages'
2018-10-27 13:14:51 +00:00
}
],
2017-11-10 19:23:20 +00:00
// Array of data provider are supported
'dataPath': [
2021-11-13 23:09:05 +00:00
'/data/'
2017-11-10 19:23:20 +00:00
],
2021-11-03 20:26:03 +00:00
'siteName': 'Freifunk Leipzig',
2017-11-10 19:23:20 +00:00
'mapLayers': [
{
2021-11-03 20:26:03 +00:00
'name': 'OpenStreetMap.HOT',
'url': 'https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png',
'config': {
'maxZoom': 19,
'attribution': '&copy; Openstreetmap France | &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}
},
{
'name': 'Esri.WorldImagery',
'url': '//server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',
2017-11-10 19:23:20 +00:00
'config': {
'maxZoom': 20,
2021-11-03 20:26:03 +00:00
'attribution': 'Tiles &copy; Esri &mdash; Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community'
2017-11-10 19:23:20 +00:00
}
}
],
// Set a visible frame
'fixedCenter': [
// Northwest
[
2021-11-03 20:26:03 +00:00
51.4168,
12.1983
2017-11-10 19:23:20 +00:00
],
// Southeast
[
2021-11-03 20:26:03 +00:00
51.2516,
12.4791
2017-11-10 19:23:20 +00:00
]
],
2018-10-07 13:04:12 +00:00
'domainNames': [
2017-11-10 19:23:20 +00:00
{
2021-11-03 20:26:03 +00:00
'domain': 'l',
'name': 'Leipzig (Gluon)'
2017-11-10 19:23:20 +00:00
},
{
2021-11-03 20:26:03 +00:00
'domain': 'meshkit',
'name': 'Leipzig (meshkit)'
2017-11-10 19:23:20 +00:00
}
2018-05-23 22:51:41 +00:00
],
'linkList': [
{
'title': 'Impressum',
2021-11-03 20:26:03 +00:00
'href': 'https://freifunk.net/impressum/'
2018-05-23 22:51:41 +00:00
},
{
'title': 'Datenschutz',
2021-11-03 20:26:03 +00:00
'href': 'https://freifunk.net/datenschutz/'
2018-05-23 22:51:41 +00:00
}
2017-11-10 19:23:20 +00:00
]
};
};
2021-11-03 20:26:03 +00:00