view client/src/components/toolbar/Polygontool.vue @ 2941:c0162cbb5775

client: toolbar: improved tooltip positions
author Markus Kottlaender <markus@intevation.de>
date Thu, 04 Apr 2019 17:44:07 +0200
parents 6c5364ff0abb
children b74ebeb2bdc8
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, mapGetters } from "vuex";
import { LAYERS } from "@/store/map.js";

export default {
  name: "polygontool",
  computed: {
    ...mapGetters("map", ["getVSourceByName"]),
    ...mapState("map", ["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.getVSourceByName(LAYERS.DRAWTOOL).clear();
    }
  }
};
</script>