Package-level declarations

Includes the callback interface for the Geometry data API, alongside associated options and response data classes.

Types

Link copied to clipboard
@RestrictToExtendedFlavor(value = [ExternalScope.LIBRARY_GROUP])
interface GeometryDataCallback : Callback<GeometryDataResponse, SearchFailure>

Callback that reports that a GeometryDataResponse or SearchFailure has been received.

Link copied to clipboard
@RestrictToExtendedFlavor(value = [ExternalScope.LIBRARY_GROUP])
data class GeometryDataOptions(@Size(min = 1, max = 20) val geometryIds: List<GeometryId>, @IntRange(from = 0, to = 22) val geometryZoom: Int? = null)

Defines the parameters of a geometry data request.

Link copied to clipboard
@RestrictToExtendedFlavor(value = [ExternalScope.LIBRARY_GROUP])
class GeometryDataResponse(val geometries: List<GeometryData>)

The response for the geometry data request.