0

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 Answer 1

1

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

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.