Please describe the question in detail and share your code, configuration, and other relevant info.
I’m getting (randomly) a grey screen instead of the google map (see image). It works sometimes (same device, different day) so it is not the API key. The console doesn’t seem to show any errors. This is a web app, and have it tested on Windows Edge, Chrome Android, etc. and
Any help would be much appreciated
async createMap(){
this.map = await GoogleMap.create({
id : 'my-map',
apiKey : "AIzaSyBheHnjfIcknJdwopZ_kz8h8FQ4BY4G4i0",
config : {
"center" : this.center,
"zoom" : 18
},
element : this.mapRef.nativeElement,
forceCreate : true
})
this.addMarker(this.center.lat, this.center.lng)
console.log('map is ready')
}