Skip to content

Instantly share code, notes, and snippets.

@diegohordi
Last active March 3, 2020 10:27
Show Gist options
  • Save diegohordi/b5a9da2417927b75f13f95d0eef1393c to your computer and use it in GitHub Desktop.
Save diegohordi/b5a9da2417927b75f13f95d0eef1393c to your computer and use it in GitHub Desktop.
Map Input
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {AppComponent} from './app.component';
import {LeafletModule} from '@asymmetrik/ngx-leaflet';
import {LocationService} from './services/location.service';
import {HttpClientModule} from '@angular/common/http';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HttpClientModule,
LeafletModule.forRoot(),
],
providers: [
LocationService
],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment