Skip to content

Instantly share code, notes, and snippets.

@pankajkrr
Created August 17, 2020 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pankajkrr/758055d2c5279141d6583a3de1a2fc0f to your computer and use it in GitHub Desktop.
Save pankajkrr/758055d2c5279141d6583a3de1a2fc0f to your computer and use it in GitHub Desktop.
how to add google maps into angular app
// get showroom list...
getShowroomList(){
this._common.showLoader(true);
this._admin.geShowroomList().subscribe(result=>{
this._common.showLoader(false);
this.showrooms = result;
},error=>{
this._common.showLoader(false);
this._alert.error('Something went wrong');
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment