# HG changeset patch # User Thomas Junk # Date 1532949206 -7200 # Node ID 863ec6010045948a4f0b2abb7145ac75cb0bcfec # Parent 89f1aa33adcf617e03c8c792a1c287fa989273f6# Parent 61f1374f0c4412f703541e11a75e19c18a777794 merge diff -r 61f1374f0c44 -r 863ec6010045 .hgignore --- 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 diff -r 61f1374f0c44 -r 863ec6010045 client/src/components/Map.jsx --- 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 } }) }) ],