Google Maps adapter for Angular Framework
npm install @boldadmin/angular-google-maps
$ npm install @boldadmin/angular-google-maps
`Usage
Add new provider just like in the sample to @NgModule annotation of app.module.ts file
and replace YOUR_GOOGLE_MAPS_API_KEY with google maps api key:
`
@NgModule({
providers: [
{
provide: APP_INITIALIZER,
useFactory: () => (() => GoogleMapsLoader.load('YOUR_GOOGLE_MAPS_API_KEY')),
deps: [GoogleMapsLoader],
multi: true
}
]
})
`Add new import just like in the sample to @NgModule annotation of module where you will be using angular-google-maps:
`
@NgModule({
imports: [
AngularGoogleMapsModule
]
})`Add the following element
to your html template where map will be displayed.Add AngularGoogleMapsComponent reference inside your component:
`
@ViewChild(AngularGoogleMapsComponent) mapsComponent: AngularGoogleMapsComponent
`Create map by providing focusLocation which will display the location from given coordinates
and markerLocation which will place marker at the given coordinates:
`
this.mapsComponent.setUpMapByLocation(focusLocation, markerLocation)
`Create map by providing only focusLocation and no markerLocation in order not to display marker:
`
this.mapsComponent.setUpMapByLocation(focusLocation, [])
`Create map by providing address which will display the location after geocoding the input:
`
this.mapsComponent.setUpMapByAddress(address)
``