@DeprecatedSince("2020.07", "poiCategoriesSearch(PoiCategoriesSpecification, PoiCategoriesCallback)") abstract fun poiCategoriesSearch(query: PoiCategoriesQuery!, listener: PoiCategoriesSearchResultListener!): Unit
Performs a POI Categories search action based on the provided query object, and returns the result with usage of the callback implementation.
query
- PoiCategoriesQuery!: The object which contains the data necessary to execute a POI Categories search action.
listener
- PoiCategoriesSearchResultListener!: The callback which informs the subscriber when the search result is available.
@PublicPreview("2021.06") abstract fun poiCategoriesSearch(poiCategoriesSpecification: PoiCategoriesSpecification!): Result<MutableList<PoiCategory!>!>!
Performs a synchronous POI Categories search computing action based on the provided PoiCategoriesSpecification
object.
poiCategoriesSpecification
- PoiCategoriesSpecification!: The object which contains the data necessary to execute the POI Categories search action.
Return
Result<MutableList<PoiCategory!>!>!: List of PoiCategory
.
@PublicPreview("2021.06") abstract fun poiCategoriesSearch(specification: PoiCategoriesSpecification!, callback: PoiCategoriesCallback!): Unit
Performs an asynchronous POI Categories search computing action based on the provided PoiCategoriesSpecification
object and returns the list of categories in the callback.
specification
- PoiCategoriesSpecification!: The object which contains the data necessary to execute the POI Categories action.