Angular2 Cannot find namespace 'google'
I was facing the same problem I tried :
declare var google: any;
But it didn't work for me .
I found this answer and it worked for me .
First make sure you installed the typings for google mapsnpm install @types/googlemaps --save --dev
--dev flag is deprecated. Use
npm install @types/googlemaps --save-dev
And Then in your Controller
import {} from '@types/googlemaps';
To prevent more suffering of anyone else with this issue.
npm install @google/maps
https://www.npmjs.com/package/@google/maps
THEN:
import { google } from '@google/maps';
Basically we're importing the google object from the package @google/maps
.
Tested in 2018 after @types/googlemaps
stopped working.
Add
declare var google: any;
after the TypeScript imports
See also https://github.com/SebastianM/angular2-google-maps/issues/689
Angular 6 & 7 steps (should also work for every other Angular version):
npm install @types/googlemaps --save-dev
- Add googlemaps to the types array in
tsconfig.app.json
respectively intsconfig.spec.json
- Restart npm server
In the end should look like this:
You can delete both declaration types from the components:
import {} from '@types/googlemaps';
declare var google: any;
You don't have to include any of them.
PS: If you are using agm-s GoogleMapsAPIWrapper.getNativeMap() you must convert the map object before you use it. For example turning on the traffic layer:
this.apiWrapper.getNativeMap().then(map => {
this.trafficLayer = new google.maps.TrafficLayer();
const gMap: any = map;
this.trafficLayer.setMap(gMap as google.maps.Map);
});