toMap method

  1. @override
Map<String, Object> toMap ()
override

model -> map

Implementation

@override
Map<String, Object> toMap() {
  return {
    'fLevel': this.fLevel,
    'fRotation': this.fRotation,
    'fOverlooking': this.fOverlooking,
    'targetScreenPt': this.targetScreenPt?.toMap(),
    'targetGeoPt': this.targetGeoPt?.toMap(),
    'visibleMapBounds': this.coordinateBounds?.toMap()
  };
}