Warning
This feature is available in the Full MapKit SDK version
MMKSearchSession
class MMKSearchSession : NSObject |
Interface denoting ongoing search session. Allows search cancellation and retry. For many request types allows further searches.
Summary
Instance methods
func cancel() |
func retry(responseHandler: @escaping MMKSearchSessionResponseHandler) |
func hasNextPage() -> Bool |
func fetchNextPage(responseHandler: @escaping MMKSearchSessionResponseHandler) |
func setFiltersWith( filters: [MMKSearchBusinessFilter_]) |
func setSortByDistanceWithOrigin( origin: MMKGeometry_) |
func resetSort() |
func setSearchAreaWithArea( area: MMKGeometry_) |
func setSearchOptionsWith( searchOptions: MMKSearchOptions_) |
func resubmit(responseHandler: @escaping MMKSearchSessionResponseHandler) |
Instance methods
cancel()
func cancel() |
Cancels the current request.
retry(responseHandler:)
func retry(responseHandler: @escaping MMKSearchSessionResponseHandler) |
Retries the last request. If there is an active request, it is cancelled.
Parameters |
|
searchListener |
Listener to handle search result. |
hasNextPage()
func hasNextPage() -> Bool |
Check the availability of the next result page.
Returns |
True if there are more search results and one can call |
fetchNextPage(responseHandler:)
func fetchNextPage(responseHandler: @escaping MMKSearchSessionResponseHandler) |
Request the next page of search results. Ignored if the current request isn't ready. Will throw if called when MMKSearchSession::hasNextPage is false.
Parameters |
|
searchListener |
Listener to handle search result. |
setFiltersWith(_:)
func setFiltersWith( filters: [MMKSearchBusinessFilter_]) |
Undocumented
Alert
Use {@link SearchOptions#filters} instead.
setSortByDistanceWithOrigin(_:)
func setSortByDistanceWithOrigin( origin: MMKGeometry_) |
Requests sorting by distance for future resubmits. Supported geometry types: point, polyline.
Parameters |
|
origin |
Origin to sort by distance from. |
resetSort()
func resetSort() |
Resets the sort if it was previously set (for example by MMKSearchSession::setSortByDistanceWithOrigin:) for future resubmits.
setSearchAreaWithArea(_:)
func setSearchAreaWithArea( area: MMKGeometry_) |
Sets the search area for future resubmits. Supported geometry types: bounding box, polyline, polygon. Polygon is expected to be a search window: 4 points in outer ring (or 5 if last point is equal to first) and no inner rings.
Parameters |
|
area |
Search area for future resubmits. |
setSearchOptionsWith(_:)
func setSearchOptionsWith( searchOptions: MMKSearchOptions_) |
Set searchOptions for future resubmits.
Parameters |
|
searchOptions |
Additional search parameters, see MMKSearchOptions. Supported options: MMKSearchOptions::origin, MMKSearchOptions::userPosition. |
resubmit(responseHandler:)
func resubmit(responseHandler: @escaping MMKSearchSessionResponseHandler) |
Redo the last search with currently set values of search area, search options, filters, sort type and sort origin. Isn't applicable to reverse geosearch and URI resolving. Ignored it the current request is the first one; cancels current request otherwise.
Parameters |
|
searchListener |
Listener to handle search result. |