From 16cb95422273fc245adec05778cfdd6f6e3d4b6e Mon Sep 17 00:00:00 2001
From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com>
Date: Mon, 26 Oct 2020 11:28:18 +0100
Subject: [PATCH] fix: change map default layers with osm_grandlyon

---
 src/app/map/components/map.component.ts | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index f63314cb9..f10068ae1 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -113,10 +113,25 @@ export class MapComponent implements OnChanges {
       width: 256,
       height: 256,
     };
-    const carteLayer = tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
-      maxZoom: 20,
+    // Init WMS service with param from data.grandlyon.com
+    const carteLayer = new TileLayer.WMS('https://openstreetmap.data.grandlyon.com/wms', {
+      crs: CRS.EPSG3857,
+      transparent: true,
+      format: 'image/png',
       attribution: 'Map data © OpenStreetMap contributors',
+      version: '1.3.0',
+      maxZoom: 20,
     });
+    carteLayer.wmsParams = {
+      format: 'image/png',
+      transparent: true,
+      version: '1.3.0',
+      layers: 'osm_grandlyon',
+      service: 'WMS',
+      request: 'GetMap',
+      width: 256,
+      height: 256,
+    };
     // Center is set on townhall
     // Zoom is blocked on 11 to prevent people to zoom out from metropole
     this.mapOptions = {
-- 
GitLab