MBMMapClient

@protocol MBMMapClient
/**
 * A callback that notifies the client that the map contains updated information, and thus requires a new render to be scheduled.
 *
 * Note: this callback might be invoked from different threads and it blocks rendering, so
 * clients shall avoid performing any extra operations in this callback.
 */
- (void)scheduleRepaint;
- (void)scheduleTaskForTask:(nonnull MBMTask)task;
@end

Undocumented

  • A callback that notifies the client that the map contains updated information, and thus requires a new render to be scheduled.

    Note: this callback might be invoked from different threads and it blocks rendering, so clients shall avoid performing any extra operations in this callback.

    Declaration

    Objective-C

    - (void)scheduleRepaint;

    Swift

    func scheduleRepaint()
  • Undocumented

    Declaration

    Objective-C

    - (void)scheduleTaskForTask:(nonnull MBMTask)task;

    Swift

    func scheduleTask(forTask task: @escaping Task)