try
{
BingMapLayer worldLayer = new BingMapLayer(accountId, password, clientIpAddress);
worldLayer.Open();
if (worldLayer.IsOpen)
{
}
else
{
worldLayer.Open();
}
LayerOverlay worldOverlay = new LayerOverlay();
worldOverlay.Layers.Add("WorldLayer", worldLayer);
map.Overlays.Add("WorldOverlay", worldOverlay);
map.Refresh();
this code executes with no errors but Bing maps are never displayed so I don't know what I am doing wrong.
is account id my numbered Bing maps account ID or my username?
is password the password for the account associated with that Account ID?