removeAllMapObjects method

  1. @override
void removeAllMapObjects()
override

@brief Removes all map objects from the location view.

Dart code snippet: @snippet location_window_map_objects_example.dart dart_LocationWindow_removeAllMapObjects

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, );
}