ViewAnnotationManager

interface ViewAnnotationManager

Manager API to control View Annotations.

View annotations are Android Views that are drawn on top of the MapView and bound to some Geometry (only Point is supported for now). In case some view annotations intersect on the screen Z-index is based on addition order.

View annotations are invariant to map camera transformations however such properties as size, visibility etc could be controlled by the user using update operation.

View annotations are not explicitly bound to any sources however ViewAnnotationOptions.associatedFeatureId could be used to bind given view annotation with some Feature by Feature.id meaning visibility of view annotation will be driven by visibility of given feature.

Functions

addViewAnnotation
Link copied to clipboard
abstract fun addViewAnnotation(view: View, options: ViewAnnotationOptions)
Add annotation View which is already inflated.
abstract fun addViewAnnotation(@LayoutRes() resId: Int, options: ViewAnnotationOptions): View
Add view annotation inflated from resId synchronously.
abstract fun addViewAnnotation(@LayoutRes() resId: Int, options: ViewAnnotationOptions, asyncInflater: AsyncLayoutInflater, asyncInflateCallback: (View) -> Unit)
Add view annotation inflated from resId asynchronously.
equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
getViewAnnotationByFeatureId
Link copied to clipboard
abstract fun getViewAnnotationByFeatureId(featureId: String): View?
Find View by feature id if it was specified as part of ViewAnnotationOptions.associatedFeatureId.
getViewAnnotationOptionsByFeatureId
Link copied to clipboard
abstract fun getViewAnnotationOptionsByFeatureId(featureId: String): ViewAnnotationOptions?
Find ViewAnnotationOptions of view annotation by feature id if it was specified as part of ViewAnnotationOptions.associatedFeatureId.
getViewAnnotationOptionsByView
Link copied to clipboard
abstract fun getViewAnnotationOptionsByView(view: View): ViewAnnotationOptions?
Get current ViewAnnotationOptions for given view.
hashCode
Link copied to clipboard
open fun hashCode(): Int
removeViewAnnotation
Link copied to clipboard
abstract fun removeViewAnnotation(view: View): Boolean
Remove given annotation view from the map if it was present.
toString
Link copied to clipboard
open fun toString(): String
updateViewAnnotation
Link copied to clipboard
abstract fun updateViewAnnotation(view: View, options: ViewAnnotationOptions): Boolean
Update given view annotation view with ViewAnnotationOptions.