olglib
Version:
OpenLayers with GeoServer and PostGIS
22 lines (21 loc) • 497 B
text/typescript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MapComponent } from './map/map.component';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser'
({
imports: [
CommonModule,
FormsModule,
BrowserModule
],
declarations: [ MapComponent ],
exports: [ MapComponent ]
})
export class OlglibModule {
static forRoot() {
return {
ngModule: OlglibModule
}
}
}