public double[] GetGreatCircleDistances(LatLong[] latLongs) { object[] results = this.Invoke("GetGreatCircleDistances", new object[] { latLongs}); return ((double[])(results[0])); }
public Route CalculateSimpleRoute(LatLong[] latLongs, string dataSourceName, SegmentPreference preference) { object[] results = this.Invoke("CalculateSimpleRoute", new object[] { latLongs, dataSourceName, preference}); return ((Route)(results[0])); }
/// <remarks/> public System.IAsyncResult BeginGetGreatCircleDistances(LatLong[] latLongs, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetGreatCircleDistances", new object[] { latLongs}, callback, asyncState); }
/// <remarks/> public System.IAsyncResult BeginCalculateSimpleRoute(LatLong[] latLongs, string dataSourceName, SegmentPreference preference, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("CalculateSimpleRoute", new object[] { latLongs, dataSourceName, preference}, callback, asyncState); }
public PixelCoord[] ConvertToPoint(LatLong[] latLong, MapView view, int width, int height) { object[] results = this.Invoke("ConvertToPoint", new object[] { latLong, view, width, height}); return ((PixelCoord[])(results[0])); }
/// <remarks/> public System.IAsyncResult BeginConvertToPoint(LatLong[] latLong, MapView view, int width, int height, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("ConvertToPoint", new object[] { latLong, view, width, height}, callback, asyncState); }
public Location[] GetLocationInfo(LatLong location, string dataSourceName, GetInfoOptions options) { object[] results = this.Invoke("GetLocationInfo", new object[] { location, dataSourceName, options}); return ((Location[])(results[0])); }
/// <remarks/> public System.IAsyncResult BeginGetLocationInfo(LatLong location, string dataSourceName, GetInfoOptions options, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetLocationInfo", new object[] { location, dataSourceName, options}, callback, asyncState); }