Virtual Earth 3D Flight Simulator – part 3
Another class called Airport can be made to specify an Airport location. This class will have a method called FlyToHere that will cause the plane to fly to runway of the selected airport. This class should look like this: using System;using Microsoft.MapPoint;using Microsoft.MapPoint.Rendering3D;using Microsoft.MapPoint.Rendering3D.Cameras;using Microsoft.MapPoint.Geometry.VectorMath; namespace SimpleFlightSimulator{ public class Airport { private LatLonAlt _latlong; private…