I'm trying to show google maps in ionic 3 page but can't able to view it, I'm getting this error
TypeError: Cannot read property 'nativeElement' of undefined
HTML:
<ion-col col-12>
<div #map id="map_active"></div>
</ion-col>
TS:
@ViewChild('map1') mapElement:ElementRef;
loadMap(){
//alert('hi');
let latLng = new google.maps.LatLng(-34.9290, 138.6010);
let mapOptions = {
center: latLng,
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
this.map = new google.maps.Map(this.mapElement.nativeElement, mapOptions);
}