I have done Google map stylings according to this doc: https://developers.google.com/maps/documentation/javascript/styling
I have used the Cloud tool here. I have used the available template. i.e. no JSON styles here.
index.html
<script
src="https://maps.googleapis.com/maps/api/js?key=mykey&map_ids=mapidhere">
</script>
I use Angular Google Maps component here: https://github.com/angular/components/blob/master/src/google-maps/README.md
But I didn't do anything there related to the Custom styling. I have restarted the app and clear the cache too. But no map styles yet? I have published the changes too. Any clue here why this behavior?
component.html
<google-map [options]="locationModel?.googleMap?.mapOptions" height="104%" width="100%">
<map-marker #marker="mapMarker" *ngFor="let storeMarkerPosition of locationModel?.googleMap?.storeMarkerPositions"
[position]="storeMarkerPosition.markerPosition" [options]="locationModel?.googleMap?.markerOptions"
(mapClick)="openInfoCard(marker,storeMarkerPosition.store)">
</map-marker>
<map-info-window>
<app-location-details *ngIf="store" [storeModel]="store"></app-location-details>
</map-info-window>
</google-map>