class WaypointModel { final String name; final double x, y; WaypointModel({required this.name, required this.x, required this.y}); }