Skip to main content

Posts

Showing posts with the label AgmCoreModule.forRoot

Angular 5, 6 Google Maps (AGM) API Key - Integrating Google Maps

This sample application has the purpose of demonstrating how to Integrating Google Maps in Angular Applications? The following steps are – 1.       Install Google Maps 2.       Setup YOUR_API_KEY in NgModule 3.       Setup your lat and lng in your component 4.       Setup Google template 5.       Setup your CSS for height and width, it must be setup. Steps 1 - Install Angular Google Maps using below CLI command - npm install @agm/core --save Steps 2 - Setup YOUR_API_KEY in NgModule import { BrowserModule } from '@angular/platform-browser' ; import { NgModule } from '@angular/core' ; import { AppComponent } from './app.component' ; import { AgmCoreModule } from '@agm/core' @ NgModule ({   declarations: [     AppComponent   ],   imports: [     BrowserModul...