New to Kendo UI for Angular? Start a free 30-day trial
MapModule
Represents the NgModule definition for the Map component.
ts
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { MapModule } from '@progress/kendo-angular-map';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, BrowserAnimationsModule, MapModule],
bootstrap: [AppComponent]
})
export class AppModule {}