0

we want to control Google Maps on Android/IOS devices via urls, and we've looked through the docs: https://developers.google.com/maps/documentation/urls/android-intents#display_a_map

These are the functions we need but cannot find in the document: 1. Color Scheme(automatic, day, night) 2. Map type(default, satelite, terrain), Map detail(transist, traffic, bicycling, 3D, Street View) 3. Route options (avoid highways, avoid tolls, avoid ferries) 4. Search along route

  • 1
    All mentioned here sounds like a new feature requests. Open [Google issue tracker](https://issuetracker.google.com/issues?q=componentid:195646), post your feature request and let see what they answer. – xomena May 18 '20 at 19:53

1 Answers1

0

If it applies to your use case/implementation, you might want to consider using Maps SDK for Android. This will generally handle styled maps (e.g color scheme, etc.), map types (e.g terrain, satellite, etc), map details like Street View and Traffic Layers.

However for the route options, you need to use a separate web service - Directions API.

Hope this helps!

smga08
  • 614
  • 5
  • 12