YMKModel

class YMKModel : NSObject

describes model presentation of PlacemarkMapObject

Summary

Instance methods

func setDataWithGltfDataProvider( gltfDataProvider: YMKDataProviderWithId_,
                                           callback: @escaping YMKCallback)
Sets gltf data provider

Properties

var modelStyleYMKModelStyle { get set }
describes style of the model

var isValid: Bool { get }
Tells if this object is valid or no

Instance methods

setDataWithGltfDataProvider(_:callback:)

func setDataWithGltfDataProvider( gltfDataProvider: YMKDataProviderWithId_,
                                           callback: @escaping YMKCallback)

Sets gltf data provider.

The class maintains a strong reference to the object in the 'gltfDataProvider' parameter until it (the class) is invalidated.

Parameters

onFinished

Called when the model is loaded.


Properties

modelStyle

var modelStyle: YMKModelStyle { get set }

describes style of the model


isValid

var isValid: Bool { get }

Tells if this object is valid or no. Any method called on an invalid object will throw an exception. The object becomes invalid only on UI thread, and only when its implementation depends on objects already destroyed by now. Please refer to general docs about the interface for details on its invalidation.