This commit is contained in:
portree_kid 2020-03-22 16:14:14 +01:00
parent 918cfd750c
commit 62f24201b2
2 changed files with 63 additions and 8 deletions

View File

@ -0,0 +1,60 @@
<template>
<div class="leaflet-sidebar-pane" id="home">
<h1 class="leaflet-sidebar-header">
Help
<div class="leaflet-sidebar-close"><i class="fa fa-caret-left"></i></div>
</h1>
<h2>Setup</h2>
<ol>
<li>Set directories in settings (bottom left)</li>
<li>Start scans one after the other in sidebar with magnifying glass.</li>
</ol>
<h2>Search</h2>
You can search for airports with ICAO or parts of the name. Only airports with flights are shown.
If you want to view another one it will be added when you type the full ICAO.
<h2>World view</h2>
<p>
When zoomed out you will see circles. Their size corresponds with the number of flights.
Blue means Ok. Yellow to little parking. Red no groundnet.
</p>
<h2>Edit view</h2>
<p>
</p>
<ul>
<li>Button with ICAO code opens the Airport data in the edit tab.</li>
<li>The top 4 buttons in the button bar are for zooming. </li>
<li>Upload sends the current airport to groundweb.</li>
<li>Edit switches into edit mode</li>
<li>Undo undos all changes or all changes during session</li>
<li>Save, saves the groundnet</li>
<li>Draw taxiline</li>
<li>Add parking</li>
<li>Remove element, removes the currently selected element</li>
<li>Check triggers the groundnet check.</li>
</ul>
</div>
</template>
<script lang="js">
export default {
name: 'help',
props: [],
mounted () {
},
data () {
return {
}
},
methods: {
},
computed: {
}
}
</script>
<style scoped lang="scss">
</style>

View File

@ -17,13 +17,7 @@
<!-- Tab panes -->
<div class="leaflet-sidebar-content">
<div class="leaflet-sidebar-pane" id="home">
<h1 class="leaflet-sidebar-header">
Help
<div class="leaflet-sidebar-close"><i class="fa fa-caret-left"></i></div>
</h1>
<p>A responsive sidebar for mapping libraries</p>
</div>
<Help/>
<div class="leaflet-sidebar-pane" id="edit">
<h1 class="leaflet-sidebar-header">
Properties
@ -55,6 +49,7 @@
import '@fortawesome/fontawesome-free/css/all.css'
import {} from 'leaflet-sidebar-v2'
import L from 'leaflet'
import Help from './Help'
import AirportEdit from './AirportEdit'
import CheckPanel from './CheckPanel'
import ParkingEdit from './ParkingEdit'
@ -67,7 +62,7 @@
export default {
name: 'leaflet-sidebar',
components: { AirportEdit, ArcEdit, CheckPanel, NodeEdit, ParkingEdit, SettingsPanel, RunScan, FileSelect, Search },
components: { Help, AirportEdit, ArcEdit, CheckPanel, NodeEdit, ParkingEdit, SettingsPanel, RunScan, FileSelect, Search },
props: [],
mounted () {
this.add()