comparison client/src/components/map/Zoom.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
comparison
equal deleted inserted replaced
1278:8f4bf8576acd 1279:60e15c2d26a2
1 <template> 1 <template>
2 <div class="d-flex buttoncontainer shadow-xs mb-3 position-absolute" :style="showSplitscreen ? 'margin-bottom: 51vh !important' : ''"> 2 <div
3 <button class="zoomButton border-0 bg-white rounded-left ui-element border-right" @click="zoomIn"> 3 class="d-flex buttoncontainer shadow-xs mb-3 position-absolute"
4 :style="showSplitscreen ? 'margin-bottom: 51vh !important' : ''"
5 >
6 <button
7 class="zoomButton border-0 bg-white rounded-left ui-element border-right"
8 @click="zoomIn"
9 >
4 <i class="fa fa-plus"></i> 10 <i class="fa fa-plus"></i>
5 </button> 11 </button>
6 <button class="zoomButton border-0 bg-white rounded-right ui-element" @click="zoomOut"> 12 <button class="zoomButton border-0 bg-white rounded-right ui-element" @click="zoomOut">
7 <i class="fa fa-minus"></i> 13 <i class="fa fa-minus"></i>
8 </button> 14 </button>
21 z-index: 2 27 z-index: 2
22 outline: none 28 outline: none
23 color: #666 29 color: #666
24 </style> 30 </style>
25 <script> 31 <script>
32 /* This is Free Software under GNU Affero General Public License v >= 3.0
33 * without warranty, see README.md and license for details.
34 *
35 * SPDX-License-Identifier: AGPL-3.0-or-later
36 * License-Filename: LICENSES/AGPL-3.0.txt
37 *
38 * Copyright (C) 2018 by via donau
39 * – Österreichische Wasserstraßen-Gesellschaft mbH
40 * Software engineering by Intevation GmbH
41 *
42 * Author(s):
43 * Thomas Junk <thomas.junk@intevation.de>
44 */
26 import { mapState } from "vuex"; 45 import { mapState } from "vuex";
27 46
28 export default { 47 export default {
29 name: "zoom", 48 name: "zoom",
30 computed: { 49 computed: {