ApexLumia.FlightLoop.updateMap C# (CSharp) Method

updateMap() private method

private updateMap ( System location ) : void
location System
return void
        void updateMap(System.Device.Location.GeoCoordinate location)
        {
            Pushpin pin = new Pushpin();
            pin.Location = location;
            themap.Children.Add(pin);
            themap.SetView(location,16.0);
        }