PlacemarkModel constructor
PlacemarkModel({ - String? description,
- String? icon,
- String balloonContent = '',
- bool visibility = true,
- bool viewOrbit = true,
- double scale = 2.5,
- LookAtModel? lookAt,
- TourModel? tour,
- required String id,
- required String name,
- PointModel? point,
- LineModel? line,
- String? styleId,
- String? orbitContent,
})
Implementation
PlacemarkModel({
this.description,
this.icon,
this.balloonContent = '',
this.visibility = true,
this.viewOrbit = true,
this.scale = 2.5,
this.lookAt,
this.tour,
required this.id,
required this.name,
this.point,
this.line,
this.styleId,
this.orbitContent,
});