createPOICluster

fun createPOICluster(name: String, classIDs: List<Int>, image: Bitmap?, color: Int = 0xFF0000FF.toInt(), scale: Double = 1.0): Boolean

Create a POI cluster If a cluster already exists for the given name, the previous one will be deleted

Return

true if cluster has been created, false otherwise

Parameters

name

The cluster's name, used to identify the cluster

classIDs

A list of class ID which be added to the cluster

image

An optional image used by the cluster

color

An optional color used to render the text

scale

An optional value to upscale/downscale the cluster


fun createPOICluster(name: String, classIDs: List<Int>): Boolean

Create a POI cluster If a cluster already exists for the given name, the previous one will be deleted

Return

true if cluster has been created, false otherwise

Parameters

name

The cluster's name, used to identify the cluster

classIDs

A list of class ID which be added to the cluster


fun createPOICluster(name: String, classIDs: List<Int>, color: Int, scale: Double): Boolean

Create a POI cluster If a cluster already exists for the given name, the previous one will be deleted

Return

true if cluster has been created, false otherwise

Parameters

name

The cluster's name, used to identify the cluster

classIDs

A list of class ID which be added to the cluster

color

An color used to render the text

scale

An value to upscale/downscale the cluster


fun createPOICluster(name: String, classIDs: List<Int>, image: Bitmap?): Boolean

Create a POI cluster If a cluster already exists for the given name, the previous one will be deleted

Return

true if cluster has been created, false otherwise

Parameters

name

The cluster's name, used to identify the cluster

classIDs

A list of class ID which be added to the cluster

image

An optional image used by the cluster