comparison client/src/map/Mapview.vue @ 585:ef307bd6b5d8

refac: restructured client application To make the application more accessible for developers, the structure was reorganized. Instead of sticking to technical terminology, the application terminology is according to the domain: I.e. "map" contains everything regarding map (including store).
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 07 Sep 2018 11:13:56 +0200
parents
children
comparison
equal deleted inserted replaced
584:8b66a10aaf8a 585:ef307bd6b5d8
1 <template>
2 <div class="main d-flex flex-column">
3 <Maplayer :lat="6155376" :long="1819178" :zoom="11"></Maplayer>
4 </div>
5 </template>
6
7 <style lang="scss">
8 @import "../application/assets/application.scss";
9
10 .menubutton {
11 margin-left: $small-offset;
12 }
13 </style>
14
15 <script>
16 import Maplayer from "./Maplayer";
17
18 export default {
19 name: "mainview",
20 components: {
21 Maplayer
22 }
23 };
24 </script>