Hi again!
I managed to get some account info for another valid account we have at work
(seems like it was the account info since my newly created bing account info wouldn't work
I got this to work in my client with my version of the code
string accountId = "[ACCOUNTID]";
string passwd = "[PASSWD]";
string client = "[CLIENTIP]";
Map.MapUnit = GeographyUnit.Meter;
Map.CurrentExtent = new RectangleShape(-10000000, 10000000, 10000000, -10000000);
LayerOverlay overlay = new LayerOverlay();
VirtualEarthLayer layer = new VirtualEarthLayer(accountId, passwd, client);
layer.CacheDirectory = System.Environment.GetFolderPath(Environment.SpecialFolder.InternetCache);
layer.MapType = VirtualEarthMapType.AerialWithLabels;
overlay.Layers.Add(layer);
Map.Overlays.Add("WORLD", overlay);
Map.Refresh();
However the loading of the map was really slow... is this due to the old implementation I'm using ?
Don't you have some form of deepzoom implementation or such in your component?
Thanks in advance
/Magnus