I’m using the google maps plugin and I want to change the map type. In options I have the following, but it doesn’t work, I have changed it to different types but always appears the same type of map:
let opciones: GoogleMapOptions = {
mapType: GoogleMapsMapTypeId.SATELLITE,
controls: {
compass: false,
zoom: true,
myLocationButton: true,
myLocation: true
},
styles: this.style
};
How can I change the map type?
Thank you.