Hello,
I have tried to render Bing map with option of Birdseye but it did not getting load. it display big pink tile image with X symbol at the center of the screen. I am pasting my function to render Bing map below.
public
void
RenderBingMapBirdEye()
{
//string appPath = Path.GetDirectoryName(Application.ExecutablePath);
//if (!Directory.Exists(@appPath + "\BingMapCache"))
//{
// Directory.CreateDirectory(@appPath + "\BingMapCache");
//}
//BingMapsOverlay bingOverLay = new BingMapsOverlay("
ApplicationId
", BingMapsMapType.Road, "C:\Temp\Bing");
BingMapsOverlay bingOverLay =
new
BingMapsOverlay(
"ApplicationId"
, BingMapsMapType.Birdseye);
bingOverLay.WebProxy =
new
WebProxy(
"<a href="192.168.0.251">192.168.0.251</a>:8080"
,
false
);
ktpsMap.Overlays.Insert(0,
"BingMapOverlay"
, bingOverLay);
ktpsMap.Refresh();
}
Here is my function. when I run the code it did not display any thing.
Please let me know if I miss some thing.
Thank you.
Eric.