Hi,
If I put 2 maps on one page as discussed in one of the previous posts
everything is fine.
However, if I switch one map to 3D view everything is fine again but if I switch the 2-d map to the 3D view a message in red appears " Return to the previous window for an active map view"
So, it appears that 2 3D maps are not behaving the same way s 2 2D maps.
Why is that - a bug a feature
stan
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx v=5"></script>
<script>
var map = null;
var map2 = null;
function GetMap()
{
map = new VEMap('myMap');
map.LoadMap();
map2 = new VEMap('myMap2');
map2.LoadMap();
}
</script>
</head>
<body onload="GetMap();">
<div id='myMap' style="position:relative; width:400px; height:400px;"></div>
<div id='myMap2' style="position:relative; width:400px; height:400px;"></div>
</body>
</html>