import { Component, Input } from '@angular/core'; import { Layer } from 'ol/layer'; import { Source } from 'ol/source'; @Component({ selector: 'fm-map-zoom-to-show-alert', template: '
 Zoom in to show layer
' }) export class ZoomToShowAlert { public layer$: Layer; @Input() set layer(layer:Layer) { this.layer$ = layer; } }