Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot find namespace 'google' in angular 14

Tags:

angular

@angular/google-maps version: 14.1.1

I am using angular 14 and implement google map using @angular/google-maps but through error Cannot find namespace 'google'.

Here is stackblitz link click...

like image 701
Nikhil Makwana Avatar asked Mar 28 '26 18:03

Nikhil Makwana


1 Answers

As mentioned in the doc

The Google Maps JavaScript declaration files (see source files on GitHub) can be installed using NPM from the @types/google.maps package

Try this:

 npm i -D @types/google.maps
like image 135
Chellappan வ Avatar answered Mar 31 '26 09:03

Chellappan வ