diff --git a/Views/Flightsim/Index.cshtml b/Views/Flightsim/Index.cshtml new file mode 100644 index 0000000..c9d9b5d --- /dev/null +++ b/Views/Flightsim/Index.cshtml @@ -0,0 +1,53 @@ +@model EFB.Models.FlightsimModel; +@{ + ViewData["Title"] = "Welcome"; +} + +
+
+
+

Current Position

+ +
+
+ +
Last Updated at: @Model.CurrentPosition.LatestPacketUpdate.ToString()
+ +
+
+

Latitude

+ @Model.CurrentPosition.LatestPosition.Latitude + +

Longitude

+ @Model.CurrentPosition.LatestPosition.Longitude +
+
+

Altitude

+ @Model.CurrentPosition.LatestPosition.Altitude ft +
+
+ +
+
+ +
+
+

Closest Waypoint

+ +
+
+

@Model.Closest.Name -> @Model.Closest.Airway

+ +

Latitude

+ @Model.Closest.Latitude + +

Longitude

+ @Model.Closest.Longitude + + +
+
+
+ + +