removeTraceOverlay method Null safety

Future<bool> removeTraceOverlay(
  1. String overlayId
)

地图指定删除trace overlay

overlayId 要删除overlay的id

bool 成功返回true 失败false

Implementation

Future<bool> removeTraceOverlay(String overlayId) async {
  return await BMFMapDispatcherFactory.instance.overlayDispatcher
      .removeTraceOverlay(_mapChannel, overlayId);
}