Warning
This feature is available in the Full MapKit SDK version
YMKAssetsProvider
protocol YMKAssetsProvider : NSObjectProtocol |
Interface for providing images, image sizes and icon styles to the search layer. Call with static_cast
Summary
Instance methods
func image(withSearchResult searchResult: YMKSearchResultItem, This method will be called on a background thread |
func size(withSearchResult searchResult: YMKSearchResultItem, This method may be called on any thread |
func iconStyle(withSearchResult searchResult: YMKSearchResultItem, |
func canProvideLabels(withSearchResult searchResult: YMKSearchResultItem) -> Bool |
Instance methods
image(withSearchResult:placemarkIconType:)
func image(withSearchResult searchResult: YMKSearchResultItem, |
Returns an image for certain placemark type with given search result
This method will be called on a background thread.
size(withSearchResult:placemarkIconType:)
func size(withSearchResult searchResult: YMKSearchResultItem, |
Returns the size of the icon of certain placemark type with given search result
This method may be called on any thread. Its implementation must be thread-safe.
iconStyle(withSearchResult:placemarkIconType:)
func iconStyle(withSearchResult searchResult: YMKSearchResultItem, |
Returns the icon style for certain placemark type with given search result. If obtainAdIcons mode is enabled, IconStyle.anchor will be replaced for advertisement pins
This method may be called on any thread. Its implementation must be thread-safe.
canProvideLabels(withSearchResult:)
func canProvideLabels(withSearchResult searchResult: YMKSearchResultItem) -> Bool |
Returns true
if provider is able to provide images for given search result and placemark types of LabelShortLeft
, LabelShortRight
, LabelDetailedLeft
and LabelDetailedRight
. If false
is returned then no label would be shown for this search result.
This method may be called on any thread. Its implementation must be thread-safe.