view client/src/components/toolbar/Polygontool.vue @ 3006:44493664d40e

client: refactored layers config Layers are not stored in the vuex store anymore but instead they are served from a factory function, so that different maps can haved individual layer objects
author Markus Kottlaender <markus@intevation.de>
date Thu, 11 Apr 2019 11:44:11 +0200
parents b74ebeb2bdc8
children c71373594719
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", ["openLayersMap", "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.openLayersMap
        .getLayer("DRAWTOOL")
        .getSource()
        .clear();
    }
  }
};
</script>