view client/src/components/Main.vue @ 2250:23c03e2eaf4f

client: make different LOS visually distinct * Move usually smaller layers to be draw last, so they are on top of the map. * Change linewidth so that the more significant layers have a larger width.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 13 Feb 2019 16:53:58 +0100
parents 16fb9667ddf8
children 9bf6b767a56a
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>
 */

export default {
  name: "mainview",
  components: {
    Maplayer: () => import("./Maplayer"),
    FairwayProfile: () => import("./fairway/Fairwayprofile")
  }
};
</script>