Created
August 17, 2020 10:55
-
-
Save pankajkrr/758055d2c5279141d6583a3de1a2fc0f to your computer and use it in GitHub Desktop.
how to add google maps into angular app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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