This uses the July 2008 CTP of the Windows Live tools. You can download the Windows Live Tools for Visual Studio.
One of the interesting features of Virtual Earth is that it doesn’t have to use the maps provided by Microsoft. You can set it up to point to another tile server so that you can use your own maps. This could be extremely useful for people who want to show static visualisations of data, or simply display something different to what Microsoft give you.
Setting up the tile server is likely the more difficult part as setting up the client to point at a new tile server is incredibly easy. I’m not going into setting up the tile server in this post.
First setting up the ASPX page to handle this:
<form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" /> <ve:Map ID="VEMap" runat="server" Height="600px" Width="600px" ZoomLevel="8" Center-Latitude="55.75" Center-Longitude="-3.5" /> </div> </form>
As you can see there isn’t anything unusual here. There are no additional options to set.
However, in the Page_Load event handler there are some things that need to be set up:
protected void Page_Load(object sender, EventArgs e) { VEMap.DashboardSize = DashboardSize.Tiny; List<LatLongRectangle> bounds = CalculateBounds(); TileSourceSpecification tileSpec = new TileSourceSpecification( "OSM", "", 1, bounds, 1, 18, "getTilePath", 1.0, 100, true); VEMap.AddTileLayer(tileSpec, true); }private static List<LatLongRectangle> CalculateBounds() { List<LatLongRectangle> bounds = new List<LatLongRectangle>(); LatLongRectangle box = new LatLongRectangle( new LatLong(90, -180), new LatLong(-90, 180)); bounds.Add(box); return bounds; }
First of all, we are reducing the dashboard side down to its minimum because the particular tile server does not support the other features provided in the dashboard such as switching between road and aerial photography.
We create the TileSourceSpecification that defines what the tile server can do and how to interact with it. The parameters are:
- Id: An identifier for you to use to identify the tile server, if you are using more than one.
- TileSource: You can set up a string format to define the URL of the tiles, but only if your tile server is using the same naming convention as Virtual Earth itself. It has the ability of switching between road, aerial and hybrid modes and load balancing. More info on the TileSource Property…
- NumServers: If your tile server is load balanced then this specifies the number of servers.
- Bounds: This is the bounding box of the tile layer. In our case above the tile server covers the entire world so our bounding box covers +90,-180 to -90,+180
- MinZoomLevel / MaxZoomLevel: This pair of parameters specify the the minimum and maximum zoom levels. 1=the whole world, 18 = street level.
- GetTilePath: This is the name of a javascript function that generates the path to the tile. I’ll go into more detail on that javascript function a little later on. However, if this property contains a value then the TileSource and NumServers properties are ignored.
- Opacity: How opaque is this tile layer. By default the Virtual Earth tiles are drawn first, then your layer is drawn on top. 0 is completely transparent (and a bit pointless) while 1.0 is completely opaque and will hide the layer underneath. At present you cannot turn off the layer underneath so if you only want to see your layer set the opacity to 1.0. This is because Virtual Earth ASP.NET controls are based on Virtual Earth 6.1. 6.2 is now released which does have the ability to turn off the base layers.
- ZIndex: Tile layers can be stacked on top of each other, this indicates the positioning of this layer in that stack.
- Visible: Indicates whether the layer is visible or not.
In the example above the tile server does not support the virtual earth naming convention. In that case a javascript function to define the name of each tile is needed. In our example it looks like this:
function getTilePath(tileContext) { return "http://tile.openstreetmap.org/" + tileContext.ZoomLevel + "/" + tileContext.XPos + "/" + tileContext.YPos + ".png"; }
The server for the tiles is http://tile.openstreetmap.org. If you are unfamiliar with it, Open Street Map is an open source map of the world.
The tile server refers to the individual tiles in the format “/{ZoomLevel}/{X}/{Y}.png”. These values can be obtained by the tileContext parameter (see right) passed into the javascript function.
The tile context also contains a map style property which can be “r” (road), “a” (aerial) or “h” (hybrid).
The final result looks like this:
For information about doing the same purely in javascript see this post by John O’Brien.