MapPlacesManager

class MapPlacesManager : SygicContext.OnContextDestroyListener

Types

ClusterSettingsListener
Link copied to clipboard
interface ClusterSettingsListener

Callback interface called when setClusterSettings finishes

FillPlacesListener
Link copied to clipboard
interface FillPlacesListener

Callback interface called when fillPlaces operation finishes

QueryVisiblePlacesListener
Link copied to clipboard
interface QueryVisiblePlacesListener

Callback interface called when queryVisiblePlaces operation finishes

Functions

clear
Link copied to clipboard
fun clear()

Clear all places imported by fillPlaces method

fillPlaces
Link copied to clipboard
fun fillPlaces(places: Array<MapPlace>, categories: Array<MapPlaceCategory>, listener: MapPlacesManager.FillPlacesListener = FillPlacesListenerWrapper(), executor: Executor? = null)

Import given map places and categories into map drawing engine All previous places are removed during this process

getPlacesCount
Link copied to clipboard
fun getPlacesCount(): Int

Get number of places imported by fillPlaces method

onContextDestroy
Link copied to clipboard
open override fun onContextDestroy()
queryVisiblePlaces
Link copied to clipboard
fun queryVisiblePlaces(categories: Array<String>, emptyDescription: Boolean, listener: MapPlacesManager.QueryVisiblePlacesListener, executor: Executor? = null)

Query visible places filtered by category and/or description text A place is considered visible when:

setClusterSettings
Link copied to clipboard
fun setClusterSettings(settings: MapPlaceClusterSettings, listener: MapPlacesManager.ClusterSettingsListener = ClusterSettingsListenerWrapper(), executor: Executor? = null)

Provide settings for the cluster calculation. The clustering joins nearby places to cluster objects when a view is zoomed out. The settings will be used in the subsequent fillings of places. This function itself doesn't perform any clusters processing. If settings are invalid, the radius is too small or too large, previous or default settings will be used.

updatePlace
Link copied to clipboard
fun updatePlace(place: MapPlace)

Update place's data of imported map place of the same id (see MapPlace.id)