view client/src/components/map/Main.vue @ 1482:46636f863742

refac: logs in card-design
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 04 Dec 2018 11:43:12 +0100
parents b350b0b5cb6c
children
line wrap: on
line source

<template>
  <div class="main d-flex flex-column">
    <Maplayer></Maplayer>
    <FairwayProfile></FairwayProfile>
  </div>
</template>

<script>
/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 */

import Maplayer from "./Maplayer";
import FairwayProfile from "./fairway/Fairwayprofile";

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