view client/src/components/toolbar/AvailableFairwayDepth.vue @ 5704:a68e8eae7273 sr-v2

Dont store bounding boxes in v2 meshes.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 19 Feb 2024 18:27:40 +0100
parents 91a3f6835f3d
children
line wrap: on
line source

<template>
  <div
    class="toolbar-button"
    v-tooltip.right="label"
    @click="$store.commit('application/showFairwayDepth', !showFairwayDepth)"
  >
    <font-awesome-icon
      icon="chart-line"
      :class="{ 'text-info': showFairwayDepth }"
    />
  </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):
 * Markus Kottländer <markus.kottlaender@intevation.de>
 * Thomas Junk <thomas.junk@intevation.de>
 */
import { mapState } from "vuex";

export default {
  computed: {
    ...mapState("application", ["showFairwayDepth"]),
    label() {
      return this.$gettext("Available fairway depth");
    }
  }
};
</script>