removeAllMapObjects method

  1. @override
void removeAllMapObjects()
override

Removes all map objects from the location view.

Example:

// Remove all map objects
_locationWindow!.removeAllMapObjects();
print("Removed all map objects");

Implementation

@override
void removeAllMapObjects() {
    final _removeAllMapObjectsFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Void Function(Pointer<Void>, ),
        void Function(Pointer<Void>, )
      >('navigine_sdk_flutter_LocationWindow_removeAllMapObjects'));
    final _handle = this.handle;
    _removeAllMapObjectsFfi(_handle, );
}