view client/src/components/toolbar/Layers.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 c0162cbb5775
children
line wrap: on
line source

<template>
  <div
    @click="$store.commit('application/showLayers', !showLayers)"
    class="toolbar-button"
    v-tooltip.right="label"
  >
    <font-awesome-icon
      icon="layer-group"
      :class="{ 'text-info': showLayers }"
    />
  </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>
 */
import { mapState } from "vuex";

export default {
  name: "layers",
  computed: {
    ...mapState("application", ["showLayers"]),
    label() {
      return this.$gettext("Map Layers");
    }
  }
};
</script>