queryRenderedFeatures

abstract fun queryRenderedFeatures(shape: List<ScreenCoordinate?>, options: RenderedQueryOptions, callback: QueryFeaturesCallback)

Queries the map for rendered features.

Parameters

shape

Screen pixel coordinates (point, line string or box) to query for rendered features.

options

Options for querying rendered features.

callback

Callback called when the query completes

abstract fun queryRenderedFeatures(box: ScreenBox, options: RenderedQueryOptions, callback: QueryFeaturesCallback)

Queries the map for rendered features.

Parameters

box

Screen box to query for rendered features.

options

Options for querying rendered features.

callback

Callback called when the query completes

abstract fun queryRenderedFeatures(pixel: ScreenCoordinate, options: RenderedQueryOptions, callback: QueryFeaturesCallback)

Queries the map for rendered features.

Parameters

pixel

Screen pixel coordinate to query for rendered features.

options

Options for querying rendered features.

callback

Callback called when the query completes

abstract fun queryRenderedFeatures(geometry: RenderedQueryGeometry, options: RenderedQueryOptions, callback: QueryFeaturesCallback): Cancelable

Queries the map for rendered features.

Return

A cancelable object that could be used to cancel the pending query.

Parameters

geometry

The screen pixel coordinates (point, line string or box) to query for rendered features.

options

The render query options for querying rendered features.

callback

The query features callback called when the query completes.