view client/src/components/toolbar/Linetool.vue @ 3062:87e0422cffa7

client: draw/cut tools work now with multiple maps
author Markus Kottlaender <markus@intevation.de>
date Tue, 16 Apr 2019 12:49:29 +0200
parents c71373594719
children
line wrap: on
line source

<template>
  <div @click="toggle" class="toolbar-button" v-tooltip.right="label">
    <font-awesome-icon icon="ruler" :class="{ 'text-info': lineToolEnabled }" />
  </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: "linetool",
  computed: {
    ...mapState("map", ["openLayersMaps", "lineToolEnabled"]),
    label() {
      return this.$gettext("Measure Distance");
    }
  },
  methods: {
    toggle() {
      this.$store.commit("map/lineToolEnabled", !this.lineToolEnabled);
      this.$store.commit("map/polygonToolEnabled", false);
      this.$store.commit("map/cutToolEnabled", false);
      this.$store.commit("map/setCurrentMeasurement", null);
      this.openLayersMaps.forEach(m => {
        m.getLayer("DRAWTOOL")
          .getSource()
          .clear();
      });
    }
  }
};
</script>