Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom Google Maps styling for Android

This one is pretty out there, but I can't find any posts addressing it anywhere. For Google Maps API v3, you can add custom styling to the map elements:

var pinkParksStyles = [
{
 featureType: "all",
 stylers: [
  { saturation: -80 }
 ]
},
{
 featureType: "poi.park",
 stylers: [
  { hue: "#ff0023" },
  { saturation: 40 }
 ]
}
];

map.setOptions({styles: pinkParksStyles});

Does anyone know of any way to apply custom styling to an Android MapView?? Thanks!!!

like image 830
TomBomb Avatar asked Jul 13 '26 01:07

TomBomb


1 Answers

Sorry if I answer old post but maybe it will help someone in future. As far as I know The Google Maps Android API does not support custom styles. You can check it out there https://developers.google.com/maps/documentation/android-api/lite. cmiiw

like image 187
rischan Avatar answered Jul 15 '26 16:07

rischan