renderUserTracks

fun renderUserTracks(userId: String? = null, venueId: String? = null, startTimeMilli: Long, endTimeMilli: Long, completionCallback: CompletionCallback<Boolean>? = null): Unit?

Renders the user track feature layer on the scene.

Parameters

userId

Optional, The user ID associated with the track.

venueId

Optional, The venue ID associated with the track.

startTimeMilli

The start time of the track in milliseconds since epoch.

endTimeMilli

The end time of the track in milliseconds since epoch.

completionCallback

An optional callback to be invoked upon completion of the operation. If the operation succeeds and track is available for the provided dates, the onSuccess method will be called with a value of true. If an error occurs or tracks are not available for the provided dates, the onError method will be called with the exception that caused the error.