Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
12 lines
416 B
TypeScript
12 lines
416 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { layer } from 'ol';
|
|
|
|
@Component({
|
|
selector: 'fm-map-zoom-to-show-alert',
|
|
template: '<div *fm-map-ifZoomToShow="layer" class="alert alert-info"><i class="fas fa-search-plus" aria-hidden="true" i18n-title title="Add as layer"></i> <span i18n>Zoom in to show layer</span></div>'
|
|
})
|
|
export class ZoomToShowAlert {
|
|
@Input() layer: layer;
|
|
}
|
|
|