14 lines
253 B
Dart
14 lines
253 B
Dart
|
|
class MeasuredPoint {
|
||
|
|
final String name;
|
||
|
|
final double latitude;
|
||
|
|
final double longitude;
|
||
|
|
final double? altitude;
|
||
|
|
|
||
|
|
const MeasuredPoint({
|
||
|
|
required this.name,
|
||
|
|
required this.latitude,
|
||
|
|
required this.longitude,
|
||
|
|
this.altitude,
|
||
|
|
});
|
||
|
|
}
|