I am working on a Flutter app with google maps. Is there a way to get the map style used in google maps app somewhere?
The standard style has roads with a yellowish color while the roads on google maps app are different shades of grey.
Thanks
controller.setMapStyle Use this code. You can create your own style from here.
[
{
"featureType": "road.local",
"elementType": "geometry.fill",
"stylers": [
{
"color": "#f6e54c"
}
]
}
]