changeset 276:863ec6010045

merge
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 30 Jul 2018 13:13:26 +0200
parents 89f1aa33adcf (diff) 61f1374f0c44 (current diff)
children 807efc83e507
files
diffstat 2 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Mon Jul 30 12:53:16 2018 +0200
+++ b/.hgignore	Mon Jul 30 13:13:26 2018 +0200
@@ -94,7 +94,9 @@
 !.vscode/launch.json
 !.vscode/extensions.json
 .history
-
+.buildbase
+session.data
+gemma
 cmd/tokenserver/tokenserver
 web
 
--- a/client/src/components/Map.jsx	Mon Jul 30 12:53:16 2018 +0200
+++ b/client/src/components/Map.jsx	Mon Jul 30 13:13:26 2018 +0200
@@ -3,7 +3,7 @@
 import { Map, View } from "ol";
 import TileLayer from "ol/layer/Tile";
 import OSM from "ol/source/OSM";
-import TileWMS from 'ol/source/TileWMS.js';
+import TileWMS from "ol/source/TileWMS.js";
 
 export default {
   render(h) {
@@ -22,11 +22,11 @@
       layers: [
         new TileLayer({
           source: new OSM()
-		 }),
+        }),
         new TileLayer({
           source: new TileWMS({
-            url: 'https://demo.d4d-portal.info/wms',
-            params: {'LAYERS': 'd4d', 'VERSION': '1.1.1', 'TILED': true},
+            url: "https://demo.d4d-portal.info/wms",
+            params: { LAYERS: "d4d", VERSION: "1.1.1", TILED: true }
           })
         })
       ],