meshviewer/README.md

235 lines
8.0 KiB
Markdown
Raw Normal View History

[![Build Status](https://travis-ci.org/ffrgb/meshviewer.svg?branch=develop)](https://travis-ci.org/ffrgb/meshviewer)
2015-04-01 15:49:12 +00:00
2016-05-22 20:35:23 +00:00
### Main differences to https://github.com/ffnord/meshviewer
#### Some features are maybe merged
2015-04-01 15:07:04 +00:00
- Add modes - For example add a night layer and style
- Updates selected node or list (incl. image stats cache-breaker) - not only overview tables
2016-12-30 15:25:18 +00:00
- Zoom level if you click a node (`nodeZoom`) - Zoom level 22 available, but it is to close for a click
2016-05-22 20:35:23 +00:00
- Formatted Code
- Grunt inline for some css and js - less requests
- Icon font with only needed icons
- Upgrade to grunt v1.x (Tested with Node.js 4 LTS,6 LTS,7 Linux,OSX,W**)
2016-05-22 20:35:23 +00:00
- Inline some css and js
- Remove bower in favour of npm/yarn
2016-05-22 20:35:23 +00:00
- Load only german locale from 101 languages from moment.js
- Right click open layermenu
- Remove ruby dependency
2016-05-26 16:39:26 +00:00
- FixedCenter is required
- Rewrite Scss, SASS lint and variables for easy customization/adjustments
- Improved cross browser/device support THX@BrowserStack
- Leaflet with patch to avoid IE/Edge crashes
- Add yarn package manager in favor of npm (npm still works)
- Configurable reverse geocoding server
- [A lot more in commit history](https://github.com/ffrgb/meshviewer/commits/develop)
2015-04-11 11:48:16 +00:00
# Demo (embedded):
https://regensburg.freifunk.net/netz/karte/
2015-04-01 15:07:04 +00:00
# Screenshots
2016-05-22 20:35:23 +00:00
> TODO new uptodate images
2015-04-01 15:07:04 +00:00
2015-03-29 12:49:59 +00:00
# Dependencies
2015-03-29 00:09:21 +00:00
- yarn
2015-03-29 12:49:59 +00:00
- grunt-cli
2015-03-29 00:09:21 +00:00
2015-03-29 12:49:59 +00:00
# Installing dependencies
2015-03-29 00:09:21 +00:00
### npm is still possible, but yarn is much faster https://yarnpkg.com/
2015-04-25 16:23:20 +00:00
Install yarn package-manager:
Chosse your OS and install yarn https://yarnpkg.com/en/docs/install
2015-04-25 16:23:20 +00:00
Execute these commands on your server as a normal user to prepare the dependencies:
2016-05-22 20:35:23 +00:00
git clone https://github.com/ffrgb/meshviewer.git
cd meshviewer
yarn
# Only needed when no global grunt exists
yarn global add grunt-cli
2015-03-29 01:46:10 +00:00
# Building
2016-05-22 20:35:23 +00:00
Just run the following command from the meshviewer directory:
grunt
This will generate `build/` containing all required files.
## Development
Use `grunt serve` for development.
## Support/Help
- IRC: irc.hackint.org #freifunkRGB
- Feel free to open an issue for a problem or a idea.
2015-04-20 22:10:29 +00:00
# Configure
Change `config.json`to match your community.
2015-04-20 22:10:29 +00:00
## Customize style
Start your development and edit files in `scss/custom/`. Additional information in comments.
2016-02-05 12:49:33 +00:00
## dataPath (string/array)
2015-04-20 22:10:29 +00:00
2016-05-22 20:35:23 +00:00
`dataPath` can be either a string containing the address of a Nodes.json v2 compatible backend (e.g. ffmap backend) or an array containing multiple addresses.
2016-02-03 18:18:37 +00:00
Don't forget the trailing slash!
Also, proxying the data through a webserver will allow GZip and thus will greatly reduce bandwidth consumption.
It may help with firewall problems too.
2015-04-20 22:10:29 +00:00
## siteName (string)
Change this to match your communities' name. It will be used in various places.
2015-03-29 01:46:10 +00:00
2015-04-20 22:10:29 +00:00
## showContact (bool)
Setting this to `false` will hide contact information for nodes.
2015-04-26 11:12:11 +00:00
## maxAge (integer)
Nodes being online for less than maxAge days are considered "new". Likewise,
2015-09-30 15:38:02 +00:00
nodes being offline for more than than maxAge days are considered "lost".
2015-04-26 11:12:11 +00:00
2016-06-23 02:15:54 +00:00
## nodeZoom (integer)
Max level to be applied by clicking a node or open a node. With value `18` near by buildings and streets should be visible.
Interesting if one of configured map provider has zoom-level under `18`.
2015-07-07 14:36:19 +00:00
## mapLayers (List)
2017-01-07 02:06:54 +00:00
A list of objects describing map layers. Each object has at least `name`, `url` and `config` properties. [Example layers and configuration](http://leaflet-extras.github.io/leaflet-providers/preview/) (map against config.json).
2015-07-07 14:36:19 +00:00
2017-01-07 02:00:37 +00:00
### Additional arguments
#### mode (string)
Allows to load a additional style for a night mode or similar use case. Style is attached to the mapLayer.
#### start (integer)
Start a time range to put this mapLayer on first position.
#### end (integer)
End a time range for first map. Stops sort this mapLayer.
## fixedCenter (array, optional)
This option allows to fix the map at one specific coordinate depending on following case-sensitive parameters:
- `lat` latitude of the center point
- `lng` longitude of the center point
- `radius` visible radius around the center in km
Examples for `fixedCenter`:
"fixedCenter": {
"lat": 50.80,
"lng": 12.07,
"radius": 30
}
## nodeInfos (array, optional)
2016-03-08 19:07:20 +00:00
This option allows to show node statistics depending on following case-sensitive parameters:
- `name` caption of statistics segment in infobox
- `href` absolute or relative URL to statistics image
- `thumbnail` absolute or relative URL to thumbnail image,
can be the same like `href`
- `caption` is shown, if `thumbnail` is not present (no thumbnail in infobox)
To insert current node-id in either `href`, `thumbnail` or `caption`
you can use the case-sensitive template string `{NODE_ID}`, `{NODE_NAME}` and `{TIME}` as cache-breaker.
Examples for `nodeInfos`:
"nodeInfos": [
2016-02-03 18:18:37 +00:00
2015-05-21 20:56:08 +00:00
{ "name": "Clientstatistik",
2016-02-03 18:18:37 +00:00
"href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
"thumbnail": "stats/render/dashboard-solo/db/node-byid?panelId=1&fullscreen&theme=light&width=600&height=300&var-nodeid={NODE_ID}&var-host={NODE_NAME}&_t={TIME}",
"caption": "Knoten {NODE_ID}"
},
{ "name": "Uptime",
2016-02-03 18:18:37 +00:00
"href": "stats/dashboard/db/node-byid?var-nodeid={NODE_ID}",
"thumbnail": "stats/render/dashboard-solo/db/node-byid?panelId=2&fullscreen&theme=light&width=600&height=300&var-nodeid={NODE_ID}&_t={TIME}",
"caption": "Knoten {NODE_ID}"
}
]
2016-02-03 18:18:37 +00:00
In order to have statistics images available, you have to set up an instance of each [Prometheus](http://prometheus.io/) and [Grafana](http://grafana.org/).
## globalInfos (array, optional)
This option allows to show global statistics on statistics page depending on following case-sensitive parameters:
- `name` caption of statistics segment in infobox
- `href` absolute or relative URL to statistics image
- `thumbnail` absolute or relative URL to thumbnail image,
can be the same like `href`
- `caption` is shown, if `thumbnail` is not present (no thumbnail in infobox)
In contrast to `nodeInfos` there is no template substitution in `href`, `thumbnail` or `caption`.
2016-02-03 18:18:37 +00:00
Examples for `globalInfos` using Grafana server rendering:
"globalInfos": [
{ "name": "Wochenstatistik",
2016-02-03 18:18:37 +00:00
"href": "stats/render/render/dashboard-solo/db/global?panelId=1&fullscreen&theme=light&width=600&height=300",
"thumbnail": "nodes/globalGraph.png",
"caption": "Bild mit Wochenstatistik"
}
]
2016-03-08 19:07:20 +00:00
## linkInfos (array, optional)
This option allows to show link statistics depending on the following case-sensitive parameters:
- `name` caption of statistics segment in infobox
- `href` absolute or relative URL to statistics image
- `thumbnail` absolute or relative URL to thumbnail image,
can be the same like `href`
- `caption` is shown, if `thumbnail` is not present (no thumbnail in infobox)
To insert the source or target node-id in either `href`, `thumbnail` or `caption`
you can use the case-sensitive template strings `{SOURCE}`, `{TARGET}` and `{TIME}` as cache-breaker.
2016-03-08 19:07:20 +00:00
"linkInfos": [
{ "href": "stats/dashboard/db/links?var-source={SOURCE}&var-target={TARGET}",
"thumbnail": "stats/render/dashboard-solo/db/links?panelId=1&fullscreen&theme=light&width=800&height=600&var-source={SOURCE}&var-target={TARGET}&_t={TIME}"
2016-03-08 19:07:20 +00:00
}
]
## siteNames (array, optional)
In this array name definitions for site statistics and node info can be saved. This requires one object for each site code. This object must contain:
- `site` the site code
- `name` the defined written name for this site code
If neither `siteNames` nor `showSites` are set, site statistics and node info won't be displayed
Example for `siteNames`:
"siteNames": [
{ "site": "ffhl", "name": "Lübeck" },
{ "site": "ffeh", "name": "Entenhausen" ),
{ "site": "ffgt", "name": "Gothamcity" },
{ "site": "ffal", "name": "Atlantis" }
]
2016-06-03 20:08:12 +00:00
## Sponsoring / Supporting
- [BrowserStack](https://www.browserstack.com/) for providing a awesome testing service for hundreds of browsers
- [Travis CI](https://travis-ci.org/) for testing every push and pull request
These tools need a lot of infrastructure behind and don't charge open source software