- add map-view.component (instead of initializing the map component inside app component)- - add custom zoom control
8 lines
No EOL
344 B
HTML
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> |