TrackPoint constructor

TrackPoint(
  1. {@required LatLng location,
  2. @required int locTime,
  3. CoordType coordType: CoordType.BD09LL,
  4. double radius,
  5. int direction,
  6. double speed,
  7. double height,
  8. String createTime,
  9. String objectName,
  10. Map<String, String> columns,
  11. String roadGrade,
  12. String roadName,
  13. String locateMode,
  14. String transportMode,
  15. int supplement}
)

Implementation

TrackPoint(
    {@required LatLng location,
    @required int locTime,
    CoordType coordType: CoordType.BD09LL,
    double radius,
    int direction,
    double speed,
    double height,
    this.createTime,
    this.objectName,
    this.columns,
    this.roadGrade,
    this.roadName,
    this.locateMode,
    this.transportMode,
    this.supplement})
    : assert(location != null),
      super(
          location: location,
          coordType: coordType,
          radius: radius,
          locTime: locTime,
          direction: direction,
          speed: speed,
          height: height);