Skip to content

Instantly share code, notes, and snippets.

View c-manna's full-sized avatar

Chandra kanta Manna c-manna

View GitHub Profile
@c-manna
c-manna / Angular-google-maps-agm-complete-guide-html
Created March 28, 2021 07:20
Angular-google-maps-agm-complete-guide-html
<div class="form-group">
<input
placeholder="search for location"
autocorrect="off"
autocapitalize="off"
spellcheck="off"
type="text"
class="form-control"
#search
[formControl]="searchControl"
@c-manna
c-manna / AppModule
Last active March 28, 2021 06:58
Angular google maps (agm) complete guide - appModule
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { AppComponent } from "./app.component";
import { HelloComponent } from "./hello.component";
import { AgmCoreModule } from "@agm/core";
import { AgmJsMarkerClustererModule } from '@agm/js-marker-clusterer';
import { AgmSnazzyInfoWindowModule } from '@agm/snazzy-info-window';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';