Skip to content

Instantly share code, notes, and snippets.

@kuwapa
Last active April 29, 2022 09:06
Show Gist options
  • Save kuwapa/fb185322b34cfa53ab0926f8ba565ec7 to your computer and use it in GitHub Desktop.
Save kuwapa/fb185322b34cfa53ab0926f8ba565ec7 to your computer and use it in GitHub Desktop.
override fun onCreate(savedInstanceState: Bundle?) {
//map init code..
val path = createDummyPath()
val lineOnMap = showPathOnMap(path)
}
private fun showPathOnMap(path: List<Radio>) : Line {
val lineOptions = LineOptions()
.withLineColor("#3949AB")
.withLineWidth(5f)
.withLatLngs(path)
return lineManager.create(lineOptions)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment