view client/src/components/toolbar/Polygontool.vue @ 2979:8f266dc8b4e3 unified_import

unified_imports: moved imports partially to new UI
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 09 Apr 2019 14:52:55 +0200
parents b74ebeb2bdc8
children 44493664d40e
line wrap: on
line source

<template>
  <div
    @click="togglePolygonTool"
    class="toolbar-button"
    v-tooltip.right="label"
  >
    <font-awesome-icon
      icon="draw-polygon"
      :class="{ 'text-info': polygonTool && polygonTool.getActive() }"
    />
  </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: "polygontool",
  computed: {
    ...mapState("map", ["layers", "lineTool", "polygonTool", "cutTool"]),
    label() {
      return this.$gettext("Measure Area");
    }
  },
  methods: {
    togglePolygonTool() {
      this.polygonTool.setActive(!this.polygonTool.getActive());
      this.lineTool.setActive(false);
      this.cutTool.setActive(false);
      this.$store.commit("map/setCurrentMeasurement", null);
      this.layers.DRAWTOOL.getSource().clear();
    }
  }
};
</script>