Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/jineshfrancs/ThemedGoogleMap

Utility class to make GoogleMap with custom theme.
https://github.com/jineshfrancs/ThemedGoogleMap

custom-theme googlemaps

Last synced: about 23 hours ago
JSON representation

Utility class to make GoogleMap with custom theme.

Lists

README

        

# ThemedGoogleMap
Utility class to make GoogleMap with custom theme.

Create your own theme like this

```java
GoogleMapStyler googleMapStyler = new GoogleMapStyler.Builder(MainActivity.this)
.setMainGeometryColorRes(R.color.maingeometrycolor)
.setAllPlaceTextStrokeAlpha(-80)
.setAllPlaceTextColorRes(R.color.adminstartivelabel)
.setAllMainTownTextColorRes(R.color.administativelocality)
.setAllPoiTextColorRes(R.color.poitext)
.setAllPoiParkBackgroundColorRes(R.color.poiparkbackground)
.setAllPoiParkTextColorRes(R.color.poilabel)
.setAllRoadBackgroundColorRes(R.color.roadbackground)
.setAllRoadTextColorRes(R.color.roadlabel)
.setAllRoadArterialBackgroundColorRes(R.color.roadarterialbackground)
.setAllRoadArterialStrokeColorRes(R.color.roadarterialstroke)
.setAllRoadHighwayBackgroundColorRes(R.color.roadhighway)
.setAllRoadHighwayStrokeColorRes(R.color.roadhighwaystroke)
.setAllRoadHighwayTextColorRes(R.color.roadhighwaylabel)
.setAllRoadLocalBackgroundColorRes(R.color.roadlocal)
.setAllRoadLocalStrokeColorRes(R.color.roadlocalstroke)
.setAllTransitStationTextColorRes(R.color.transitstationtext)
.setAllTransitBackgroundColorRes(R.color.transit)
.setAllWaterTextColorRes(R.color.waterlabel)
.setAllWaterBackgroundColorRes(R.color.water)
.setAllWaterTextStrokeAlpha(-20)
.build();

// Alternatively to use a Color int, remove the Res from the method name
// Example:
// setMainGeometryColor(Color.BLACK)

```
Apply generated style to google map

```java
googleMap.setMapStyle(googleMapStyler.getMapStyleOptions());
```
Use in your project
------

1.Add it in your root build.gradle at the end of repositories:
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

2.Add the dependency in your app build.gradle file:
```gradle
dependencies {
compile 'com.github.jineshfrancs:ThemedGoogleMap:1.0'
}
```