BMFOverlay.withMap constructor

BMFOverlay.withMap(
  1. Map map
)

Implementation

BMFOverlay.withMap(Map map) {
  if (null == map) {
    return;
  }

  this._id = map['id'];
  this.visible = map['visible'];
  this.zIndex = map['zIndex'];
}