Projects Gradient Polyline Project
Project
Cancel

Gradient Polyline Project

Preview Image

A use case for creating a gradient polyline on Google Maps in Android natively. Since it is not a built-in API in Google Maps Android SDK.

Github Project

You can check the whole project here.


Case Study

If you want to create a gradient polyline between two locations on Andoird Google Maps, you won’t be able since it is not a built-in API in Android Google Maps SDK according to this stackoverflow comment. That makes me try if I could make it natively or it would be something hard to implement. And I found that - in 6 hours - it could be something double and you just need to think about it in an out-of-the-box mindset and give it a try.


How does it work?

Since we are going to implement the function that creates the gradient color by ourselves, so we should know how the gradient color is created programmatically.

But before digging deeper into this, we want to mention that, to be able to draw a gradient polyline, we should have first the route - list of coordinates - that we will use to draw the gradient polyline for.

In the assets folder, you will find a route.json file that contains the list of coordinates which indicates the route between Cairo, Egypt to Alexandria, Egypt.

Let’s go back to the gradient thing, So, for any gradient color, it creates from two colors startColor and endColor. So first thing, we should extract the RGB for these two colors

1
2
3
4
5
6
7
8
9
10
11
12
13
/**
* Extract the RGD colors from the startColor
*/
val startRed = Color.red(startColor)
val startGreen = Color.green(startColor)
val startBlue = Color.blue(startColor)

/**
* Extract the RGD colors from the endColor
*/
val endRed = Color.red(endColor)
val endGreen = Color.green(endColor)
val endBlue = Color.blue(endColor)

After this, we should calculate the steps for each RGB color by subtracting the endColor from the startColor divided by 255 - which is alpha - and divided by coordinates list size of the Cairo, Alexandria route.

1
2
3
4
5
6
/**
* Calculate the steps for each RGB color.
*/
val redSteps = (endRed - startRed).toFloat() / 255 / simplifiedListSize
val greenSteps = (endGreen - startGreen).toFloat() / 255 / simplifiedListSize
val blueSteps = (endBlue - startBlue).toFloat() / 255 / simplifiedListSize

Then, we can now generate the RGB colors for gradient by getting each start RGB color and dividing them by 255 - which is alpha -, then getting the result from this plus it to the multiplication of the RGB step colors with the for loop index of the route coordinates list.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* Generate the RGB colors for gradient by getting each start RGB color and
* dividing them by 255. Then getting the result and plus it to
* the multiplication of the RGB step colors with the for loop index of
* the simplifiedList.
*/
val redGradientColor = (startRed.toFloat() / 255) + (redSteps * index)
val greenGradientColor = (startGreen.toFloat() / 255) + (greenSteps * index)
val blueGradientColor = (startBlue.toFloat() / 255) + (blueSteps * index)

/**
* Then generate the full color.
*/
val gradientColor = getRGBColor(
    red = redGradientColor,
    green = greenGradientColor,
    blue = blueGradientColor
)

Now, the gradient color calculation is done for each route coordinate. We need to add this in a meaningful way that the PolylineOptions of the Google Maps can understand and then we can draw the gradient polyline on the Google Maps. So, we create a val gradientPoly: ArrayList<PolylineOptions> = ArrayList() and for each coordinate iteration, a polylineOptions with its gradientColor will be added in the gradientPoly array.

1
2
3
4
5
6
7
8
9
/**
* And add it to the gradientPoly array of PolylineOptions
*/
gradientPoly.add(
    copyPolylineOptions(polylineOptions)
        .color(gradientColor)
        .add(simplifiedList[index])
        .add(simplifiedList[index + 1])
)

Finally, we can now add all the PolylineOptions we have in the gradientPoly array in Google Maps by iterating over them, and for each iteration, we will call map.addPolyline(polylineOptions) to add each polylineOption with its specific gradient color.

1
2
3
4
5
6
7
8
9
10
11
12
13
/**
* Then add each polylineOptions that are stored in the gradientPoly on the
* map with the delay that the integrator set.
*/
withContext(Dispatchers.Main) {
    setZoomingOnMap(false)
    gradientPoly.forEach { polylineOptions ->
        map.addPolyline(polylineOptions)
        delay(delayTime)
    }
    setZoomingOnMap(true)
    onDrawFinished()
}

Application architecture and structure

It is a single module project architecture. And, I’m following the Clean Architecture as a Software Architecture Pattern and MVVM as a Presentation Layer Pattern.

The architecture is inspired by the LiveDataSample from the android component simples.


Third-party used

I was trying to use the things that make the development process much easier and faster to be focused more on the desired from the use case which is creating a gradient polyline.

  • Coroutines for handling the background operations like reading the JSON from a file, parsing it, and looping all over the coordinates to fill the gradientPoly with PolylineOptions with its gradient color.
  • Moshi for parsing the JSON from route.json file and start working on the Cairo/Alexandria route.
  • Android Maps Utils for simplifies the given coordinate list using the Douglas-Peucker decimation algorithm.
  • KTX dependencies for making the implementation between Coroutines and MVVM much easier.
This post is licensed under CC BY 4.0 by the author.

Movie Simple App

-

Loading comments from Disqus ...