谷歌地图Fullscreencontrol在Android和Chrome上显示空白 - Ionic

Mis*_*ian 5 javascript google-maps ionic-framework angular

我已经在我的离子2项目中集成了谷歌地图,它工作正常,直到我有了添加全屏选项的要求.我添加了该行,在谷歌浏览器上测试,当我点击全屏时,我得到一个空白屏幕.在Android上编译,同样的问题.但它在Mozilla和IE上运行良好.这是我的代码

   this.platform.ready().then(() => {

   let latLng = new google.maps.LatLng(-31.563910, 147.154312);

   let mapOptions = 
     {
       center: latLng,
       zoom: 5,
       mapTypeId: google.maps.MapTypeId.ROADMAP,
       fullscreenControl: true
     }

   this.map = google.maps.Map(this.mapElement.nativeElement, mapOptions);

   this.mapCluster.addCluster(this.customersView.paginatedCustomers, this.map);

});
Run Code Online (Sandbox Code Playgroud)