UNPKG

sic-mapping-toolkit

Version:

SICMapping Toolkit es una biblioteca para Angular que permite la creación de aplicaciones de Web Mapping por medio de OpenLayers

17 lines (16 loc) 549 B
import { OnInit, OnChanges, SimpleChanges } from '@angular/core'; import Projection from 'ol/proj/Projection'; import { MapService } from '../../services/map.service'; export declare class MapViewerComponent implements OnInit, OnChanges { private mapService; mapId: string; center: [number, number]; projection: Projection | string; zoom: number; private map; constructor(mapService: MapService); ngAfterViewInit(): void; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; getMapId(): string; }