Example #1
0
 /// <remarks/>
 public void GetGreatCircleDistancesAsync(LatLong[] latLongs) {
     this.GetGreatCircleDistancesAsync(latLongs, null);
 }
Example #2
0
 /// <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);
 }
Example #3
0
 public double[] GetGreatCircleDistances(LatLong[] latLongs) {
     object[] results = this.Invoke("GetGreatCircleDistances", new object[] {
                 latLongs});
     return ((double[])(results[0]));
 }