Skip to content

Commit

Permalink
правки
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur Mushulov committed Jun 16, 2024
1 parent 6947b36 commit f4f1778
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/app/components/main/components/map/map.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
height: 100dvh;
width: 100dvw;
}

.leaflet-control-attribution {
display: none;
}
3 changes: 2 additions & 1 deletion src/app/components/main/components/map/map.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export class MapComponent implements AfterViewInit {
this.map = L.map('map', {
center: [45.07099372740487, 38.9067694661253],
zoom: 18,
zoomControl: false
zoomControl: false,
attributionControl: false
});

const tiles = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
Expand Down

0 comments on commit f4f1778

Please sign in to comment.