view client/src/components/map/toolbar/Identify.vue @ 1279:60e15c2d26a2

licensing info updated
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 22 Nov 2018 09:50:13 +0100
parents bc55ffaeb639
children 2738a6ae9ad8
line wrap: on
line source

<template>
    <div @click="$store.commit('application/showIdentify', !showIdentify)" class="toolbar-button">
        <i :class="['fa fa-info', {inverted: showIdentify}]"></i>
    </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: "identify",
  computed: {
    ...mapState("application", ["showIdentify"])
  }
};
</script>