# HG changeset patch # User Thomas Junk # Date 1532949190 -7200 # Node ID 89f1aa33adcf617e03c8c792a1c287fa989273f6 # Parent 4d37c86461230c3843f5f7769bd881312f6844db style: corrected coding style Used `yarn lint` automatic style fix. diff -r 4d37c8646123 -r 89f1aa33adcf client/src/components/Map.jsx --- a/client/src/components/Map.jsx Mon Jul 30 12:59:01 2018 +0200 +++ b/client/src/components/Map.jsx Mon Jul 30 13:13:10 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 } }) }) ],