toMap method

dynamic toMap()

Returns a Map from the current LookAtModel.

Implementation

toMap() {
  return {
    'lng': longitude,
    'lat': latitude,
    'altitude': altitude,
    'range': range,
    'tilt': tilt,
    'heading': heading,
    'altitudeMode': altitudeMode
  };
}