Beispiel #1
0
 /// <remarks/>
 public void ConvertToLatLongAsync(PixelCoord[] pixels, MapView view, int width, int height) {
     this.ConvertToLatLongAsync(pixels, view, width, height, null);
 }
Beispiel #2
0
 /// <remarks/>
 public void ConvertToLatLongAsync(PixelCoord[] pixels, MapView view, int width, int height, object userState) {
     if ((this.ConvertToLatLongOperationCompleted == null)) {
         this.ConvertToLatLongOperationCompleted = new System.Threading.SendOrPostCallback(this.OnConvertToLatLongOperationCompleted);
     }
     this.InvokeAsync("ConvertToLatLong", new object[] {
                 pixels,
                 view,
                 width,
                 height}, this.ConvertToLatLongOperationCompleted, userState);
 }
Beispiel #3
0
 public LatLong[] ConvertToLatLong(PixelCoord[] pixels, MapView view, int width, int height) {
     object[] results = this.Invoke("ConvertToLatLong", new object[] {
                 pixels,
                 view,
                 width,
                 height});
     return ((LatLong[])(results[0]));
 }