computeSmallestCircle

@JvmName(name = "computeSmallestCircleFromMapPoints")
fun computeSmallestCircle(mapPoints: List<MapPoint>): EnclosingCircle?

Returns the smallest circle which covers the given map points.

Return

EnclosingCircle?

Since

0.0.107

Parameters

mapPoints

A list of MapPoint to cover


@JvmName(name = "computeSmallestCircleFromCoordinates")
fun computeSmallestCircle(coordinates: List<GeographicCoordinate>): EnclosingCircle?

Returns the smallest circle which covers the given coordinates.

Return

EnclosingCircle?

Since

0.0.86

Parameters

coordinates

A list of GeographicCoordinate to cover