import { Component, OnInit, AfterViewInit, AfterContentInit, ViewChild } from '@angular/core'; import { Router } from '@angular/router'; @Component({ selector: 'of-infra-map', templateUrl: './map.component.html', }) export class MapComponent implements OnInit, AfterContentInit { constructor( private router: Router, ) { } ngAfterContentInit() { } ngOnInit() { } }