geomon.viewer/src/common/components/zoom-control/zoom.component.html
Arno Kaimbacher 53a9cfa0d4 - npm updates
- add map-view.component (instead of initializing the map component inside app component)-
- add custom zoom control
2021-09-10 15:29:08 +02:00

8 lines
No EOL
344 B
HTML

<div class="gba-control-zoom btn-group-vertical map-control">
<button type="button" class="button is-light is-small" (click)="zoomIn()">
<fa-icon [icon]="faPlus"></fa-icon>
</button>
<button type="button" class="button is-light is-small" (click)="zoomOut()">
<fa-icon [icon]="faMinus"></fa-icon>
</button>
</div>