Your customer uses a Virtual Earth 6.0 map to display a road map. You need to ensure that the map displays aerial images with overlaid labels when the map is initially loaded. What are two possible code segments you can use to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
A.
map = new VEMap(‘mymap’); map.LoadMap();
B.
map = new VEMap(‘mymap’); map.LoadMap(new VELatLong(47.6, -122.33), 10 ,’o’ ,false);
C.
map = new VEMap(‘mymap’); map.LoadMap(); map.SetMapStyle(VEMapStyle.Hybrid);
D.
map = new VEMap(‘mymap’); map.LoadMap(new VELatLong(47.6, -122.33), 10 ,’h’ ,true);