From 38b594ed36a3c8c5cba24868fa9e47b9902185db Mon Sep 17 00:00:00 2001 From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com> Date: Fri, 6 Nov 2020 18:07:00 +0100 Subject: [PATCH] fix: bad link for svg asset --- src/app/map/services/map.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/map/services/map.service.ts b/src/app/map/services/map.service.ts index dfe8238c4..800d845b4 100644 --- a/src/app/map/services/map.service.ts +++ b/src/app/map/services/map.service.ts @@ -12,7 +12,7 @@ export class MapService { public createMarker(lat: number, lon: number, id: number, tooltip?: string): Marker { const markerIcon = divIcon({ className: null, - html: '<svg width="40" height="46"><use xlink:href="assets/img/sprite.svg#map-marker"></use></svg>', + html: '<svg width="40" height="46"><use xlink:href="assets/ico/sprite.svg#map-marker"></use></svg>', iconSize: [35, 41], iconAnchor: [13, 41], }); -- GitLab