MapHeaderInfo constructor

const MapHeaderInfo({
  1. required BoundingBox boundingBox,
  2. String? comment,
  3. String? createdBy,
  4. bool debugFile = false,
  5. int? fileSize,
  6. int? fileVersion,
  7. String? languagesPreference,
  8. int? mapDate,
  9. int? numberOfSubFiles,
  10. List<Tag> poiTags = const [],
  11. String? projectionName,
  12. LatLong? startPosition,
  13. int? startZoomLevel,
  14. int tilePixelSize = 256,
  15. List<Tag> wayTags = const [],
  16. required ZoomlevelRange zoomlevelRange,
})

Implementation

const MapHeaderInfo({
  required this.boundingBox,
  this.comment,
  this.createdBy,
  this.debugFile = false,
  this.fileSize,
  this.fileVersion,
  this.languagesPreference,
  this.mapDate,
  this.numberOfSubFiles,
  this.poiTags = const [],
  this.projectionName,
  this.startPosition,
  this.startZoomLevel,
  this.tilePixelSize = 256,
  this.wayTags = const [],
  required this.zoomlevelRange,
});