view client/src/components/layers/Layers.vue @ 2624:9dbaf69c7a66

Improve geoserver config to better calculate bounding boxes * Disable the use of estimated extents for the postgis storage configuration for geoserver, which is set via the gemma middleware. This way we are able to get better bounding boxes for many layers where the postgis function `ST_EstimatedExtent()` would be far off.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 13 Mar 2019 16:18:39 +0100
parents bb5286acfee2
children d0f6c222f4f9
line wrap: on
line source

<template>
  <div
    :class="[
      'box ui-element rounded bg-white text-nowrap',
      { expanded: showLayers }
    ]"
  >
    <div style="width: 18rem">
      <UIBoxHeader icon="layer-group" title="Layers" :closeCallback="close" />
      <div class="box-body small">
        <Layerselect
          v-for="(layer, index) in layersForLegend"
          :layerindex="index"
          :layername="layer.name"
          :key="layer.name"
          :isVisible="layer.isVisible"
          @visibilityToggled="visibilityToggled"
        ></Layerselect>
      </div>
    </div>
  </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):
 * Thomas Junk <thomas.junk@intevation.de>
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */
import { mapGetters, mapState } from "vuex";
export default {
  name: "layers",
  components: {
    Layerselect: () => import("./Layerselect")
  },
  computed: {
    ...mapGetters("map", ["layersForLegend"]),
    ...mapState("application", ["showLayers"])
  },
  methods: {
    close() {
      this.$store.commit("application/showLayers", false);
    },
    visibilityToggled(layer) {
      this.$store.commit("map/toggleVisibility", layer);
    }
  }
};
</script>