view 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
line wrap: on
line source

<template>
  <div class="main d-flex flex-column">
    <Maplayer :lat="6155376" :long="1819178" :zoom="11"></Maplayer>
  </div>
</template>

<style lang="scss">
@import "../application/assets/application.scss";

.menubutton {
  margin-left: $small-offset;
}
</style>

<script>
import Maplayer from "./Maplayer";

export default {
  name: "mainview",
  components: {
    Maplayer
  }
};
</script>