You are creating a Virtual Earth 6.0 application. The application will use data that is stored in the Microsoft MapCruncher output format.
The MapCruncher output is defined in the following manner:
var tileSrc =
http://dev.live.com/virtualearth/sdk/layers/layer1
You need to ensure that the application displays the data as a new layer on the Virtual Earth map.
Which code segment should you use?
A.
var tileSourceSpec = new VETileSourceSpecification(“layer1/%4.png”, tileSrc); map.AddTileLayer(tileSourceSpec, true);
B.
var tileSourceSpec = new VETileSourceSpecification(“layer1”, tileSrc + /%4); map.AddTileLayer(tileSourceSpec, true);
C.
var tileSourceSpec = new VETileSourceSpecification(“layer1”, tileSrc + “/%4.png”); map.AddTileLayer(tileSourceSpec, true);
D.
var tileSourceSpec = new VETileSourceSpecification(“layer1”, tileSrc + /%1.png); map.AddTileLayer(tileSourceSpec, true);