import { Component, Input } from '@angular/core'; import { layer } from 'ol'; @Component({ selector: 'fm-map-zoom-to-show-alert', template: '
 Zoom in to show layer
' }) export class ZoomToShowAlert { @Input() layer: layer; }