Пример #1
0
 public double[] GetGreatCircleDistances(LatLong[] latLongs)
 {
     object[] results = this.Invoke("GetGreatCircleDistances", new object[] {
                 latLongs});
     return ((double[])(results[0]));
 }
Пример #2
0
 public Route CalculateSimpleRoute(LatLong[] latLongs, string dataSourceName, SegmentPreference preference)
 {
     object[] results = this.Invoke("CalculateSimpleRoute", new object[] {
                 latLongs,
                 dataSourceName,
                 preference});
     return ((Route)(results[0]));
 }
Пример #3
0
 /// <remarks/>
 public System.IAsyncResult BeginGetGreatCircleDistances(LatLong[] latLongs, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("GetGreatCircleDistances", new object[] {
                 latLongs}, callback, asyncState);
 }
Пример #4
0
 /// <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);
 }
Пример #5
0
 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]));
 }
Пример #6
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);
 }
Пример #7
0
 public Location[] GetLocationInfo(LatLong location, string dataSourceName, GetInfoOptions options)
 {
     object[] results = this.Invoke("GetLocationInfo", new object[] {
                 location,
                 dataSourceName,
                 options});
     return ((Location[])(results[0]));
 }
Пример #8
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);
 }