/// <remarks/> public void GetGreatCircleDistancesAsync(LatLong[] latLongs) { this.GetGreatCircleDistancesAsync(latLongs, null); }
/// <remarks/> public void GetGreatCircleDistancesAsync(LatLong[] latLongs, object userState) { if ((this.GetGreatCircleDistancesOperationCompleted == null)) { this.GetGreatCircleDistancesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetGreatCircleDistancesOperationCompleted); } this.InvokeAsync("GetGreatCircleDistances", new object[] { latLongs}, this.GetGreatCircleDistancesOperationCompleted, userState); }
public double[] GetGreatCircleDistances(LatLong[] latLongs) { object[] results = this.Invoke("GetGreatCircleDistances", new object[] { latLongs}); return ((double[])(results[0])); }