Google Maps - don't work

the maps but works to make changes to the map, using setCenter and setZoom has no result.

ngAfterViewInit(): void { this.platform.ready() .then(()=>{ GoogleMap.isAvailable() .then(()=>{ this.map = new GoogleMap("map"); this.map.setClickable(false); this.map.setZoom(20); this.map.setCenter(new GoogleMapsLatLng(-8.0475622,-34.8769643)); }); }); }