diff --git a/src/app/pages/maps/leaflet/leaflet.component.ts b/src/app/pages/maps/leaflet/leaflet.component.ts index d32bb9f8..3cc20b6a 100644 --- a/src/app/pages/maps/leaflet/leaflet.component.ts +++ b/src/app/pages/maps/leaflet/leaflet.component.ts @@ -18,7 +18,12 @@ export class LeafletComponent { options = { layers: [ - L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 18, attribution: '...' }), + L.tileLayer( + 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', + { + maxZoom: 18, + attribution: '© OpenStreetMap contributors', + }), ], zoom: 5, center: L.latLng({ lat: 38.991709, lng: -76.886109 }),