Google Maps Style for Flutter

94 Views Asked by At

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

1

There are 1 best solutions below

0
Tran Dev On

controller.setMapStyle Use this code. You can create your own style from here.

[
  {
    "featureType": "road.local",
    "elementType": "geometry.fill",
    "stylers": [
      {
        "color": "#f6e54c"
      }
    ]
  }
]