Polygons
The maps API allows you to add a polygon on the map.
Add a polygon
A polygon is a shape with multiple edges on the map. You can customize the appearance of the polygon by changing its properties. To add a polygon call the function fun addPolygon(OmhPolygonOptions): OmhPolygon?
.
Polygon options
Define polygon options for a Polygon
. Many properties can be set. To get the full list of properties, see the OmhPolygonOptions class. Example of usage of OmhPolygonOptions
and addPolygon(OmhPolygonOptions)
:
val omhPolygonOptions = OmhPolygonOptions().apply {
outline = listOf(
OmhCoordinate(-25.0, -15.0),
OmhCoordinate(-25.0, 20.0),
OmhCoordinate(5.0, -15.0),
)
strokeColor = Color.RED
fillColor = Color.BLUE
strokeWidth = 10f
}
val polygon = omhMap.addPolygon(omhPolygonOptions)
Modifying an existing Polygon
Once a Polygon is added to the map, you can modify its properties by calling the methods of the OmhPolygon
class. To get the full list of methods, see the OmhPolygon class. Example of usage of OmhPolygon
methods:
polygon.setFillColor(Color.BLUE)
polygon.setWidth(20f)
Polygon events
You can listen to click events on a Polygon by setting a listener on the map and calling the setOnPolygonClickListener
method. The onPolygonClick
method will be called with the OmhPolygon
as an argument.
val omhOnPolygonClickListener = OmhOnPolygonClickListener { polygon ->
val alert = AlertDialog.Builder(requireContext())
alert.setTitle(polygon.getTag().toString())
alert.setPositiveButton("OK") { dialog, _ ->
dialog.dismiss()
}
alert.show()
}
omhMap.setOnPolygonClickListener(omhOnPolygonClickListener)
Supported features
Not all the features across all the map providers are supported. Make sure to check compatibility matrix for the features you are interested in. The compatibility matrixes are available in the individual map plugin documentation.