Updated README and README of web map client.

This commit is contained in:
Raimund Renkert 2022-03-03 15:28:53 +01:00
parent b832c30838
commit 51a037cc28
2 changed files with 10 additions and 1 deletions

View File

@ -37,6 +37,8 @@ the map has to be pre-rendered with **mtseeder**.
it makes sense to do only small updates on pre-calculated images instead of generating it makes sense to do only small updates on pre-calculated images instead of generating
the map entirely on the fly. the map entirely on the fly.
* [Web-Map-Client](https://bitbucket.org/s_l_teichmann/mtsatellite/src/master/cmd/mtwebmapper/client) Web map application showing the base map of the minetest world and other in the browser.
This is Free Software under the terms of the MIT license. This is Free Software under the terms of the MIT license.
See [LICENSE](LICENSE) file for details. See [LICENSE](LICENSE) file for details.
(c) 2014 by Sascha L. Teichmann (c) 2014 by Sascha L. Teichmann

View File

@ -1,6 +1,10 @@
# client # Minetest Web-Map-Client
The web map client for mtsatellite is build as vue app using vuetify and leaflet as frameworks.
The following commands are all you need to set this application up.
## Project setup ## Project setup
``` ```
yarn install yarn install
``` ```
@ -14,6 +18,7 @@ yarn serve
``` ```
yarn build yarn build
``` ```
The result of this command is a ```dist``` folder containing the minified version. To use this in production, copy or move the folder to the location of your choice to serve the app.
### Lints and fixes files ### Lints and fixes files
``` ```
@ -21,4 +26,6 @@ yarn lint
``` ```
### Customize configuration ### Customize configuration
To configure the backend websocket URL and the app title adjust the entries in the ```.env``` file.
See [Configuration Reference](https://cli.vuejs.org/config/). See [Configuration Reference](https://cli.vuejs.org/config/).