ThinkGeo.com    |     Documentation    |     Premium Support

BingLayer not connection

the following code give me an error. I have tested with an old application id and one i have just obtained with no luck. I am using the proxy the same way i do with google maps which is working.


 


 //OPEN BING

                //BingMapsLayer bingMapLayer = new BingMapsLayer("BB58D3D0C951C95D9E7FDA515956B9195B717C4F", BingMapsMapType.Aerial, @"C:\temp\BingMapLayerCache1");

                BingMapsLayer bingMapLayer = new BingMapsLayer("ApVYtWmvuQDWs6P_v87rUyKqEELRx9CLVc45tJg8aITUdFTUZB2PK75Dq62-4oa3", BingMapsMapType.Aerial, @"C:\temp\BingMapLayerCache1");

                LayerOverlay bingOverlay = new LayerOverlay();

                bingOverlay.Layers.Add(bingMapLayer);

                bingOverlay.WrappingMode = WrappingMode.WrapDateline;

                bingOverlay.DrawTilesProgressChanged += new System.EventHandler<DrawTilesProgressChangedTileOverlayEventArgs>(googleOverlay_DrawTilesProgressChanged);

                bingMapLayer.Proxy = System.Net.WebProxy.GetDefaultProxy();

                bingOverlay.Name = "Bing";

                wpfMap1.Overlays.Add("Bing", bingOverlay);

                wpfMap1.Overlays.MoveToBottom("Bing");

                wpfMap1.Refresh();


thanks


Phil



Sorry i forgot to add. The error message i am getting is in regards to "connection to remote server".


thanks


Phil



And now i have tested on a standard machine (not the virtual machine i am developing on) and it works fine. Not sure why though. 
  
 Phil

Phil, 
  
 I have tested your sample code on both my local machine and virtual machine, they both work. I think your virtual machine may has some special setting to block BingMapsLayer connect to remote server, you know our BingMapsLayer retrieve map image from Microsoft Bing map server. 
 And also let you know I found BingMapsLayer has the same problem with GoogleMapsLayer that cut part of island on dateline when you set wrapping mode to wrap data line, if we fix the google layer’s bug, we will fix bing map layer too. 
  
 Let me know if you have more questions. 
  
 Thanks, 
 James