Mapping in WPF
Written by David Conrad   
Tuesday, 11 January 2011
Article Index
Mapping in WPF
Map navigation
Custom data
Doing more with data

 

Banner

Adding Elements

As you can probably guess - as there is an Elements collection you can add to it. In other words you can create custom elements and add them programmatically. There are three general types of custom element - path, surface and symbol element.

These are easy to use but defining the list of points to specify a path and a surface is a time consuming. As a final quick example of how elements work let's add a symbol element to the map. One problem in a demonstration is that the location of an element is gen in terms of latitude and longitude and thinking up a location can be tricky! In real-life you generally know the location in terms of Cartesian or geodetic co-ordinates and the plotting is more natural.

To demonstrate using custom elements it is easier to use a predefined shape. The only step missing from the more general task is actually entering the co-ordinats the define the shape. First we create a Point struct that gives the location of the symbol:

Point origin = xamMap1.MapProjection.
ProjectToMap(new Point(0, 0));

 

This computes a location in the viewport using the co-ordinates given in the current map projection. That is the (0,0) gives the position in longitude and latitude i.e. where the meridian and the equator cross.

Next we create the symbol and add it to the map:

SymbolElement element = new SymbolElement()
 { SymbolOrigin = origin,
Caption = "Centre of the world",
SymbolType = MapSymbolType.Diamond,
SymbolSize = 20 };
xamMap1.Layers[0].Elements.Add(element);

The size of the symbol is a rather too big for most applications but it makes it easy to find.

 

map4

 

XAML

Of course everything that we have done using procedural code can be done in XAML by simply translating the creation of objects and setting of properties in the the corresponding XAML.

For example the simple map with country names displayed would be created purely in XAML by:

<UserControl 
usual generated namesspaces
and attributes

 xmlns:ig=
 "http://schemas.infragistics.com/xaml">
<Grid x:Name="LayoutRoot"
Background="White">
<ig:XamMap HorizontalAlignment="Left"
Margin="98,84,0,0"
Name="xamMap1"
VerticalAlignment="Top"
Height="183" Width="302" >
  <ig:XamMap.Layers>
  <ig:MapLayer Name="WorldLayer">
  <ig:MapLayer.Reader>
  <ig:ShapeFileReader
Uri="Shapefiles/world"
DataMapping="Caption=CNTRY_NAME">
  </ig:ShapeFileReader>
  </ig:MapLayer.Reader>
  </ig:MapLayer>
  </ig:XamMap.Layers>
</ig:XamMap>
</Grid>
</UserControl>

 

There is, of course more to explore. For example the map control supports a range of different map projection types and you can read shape data from a database.

To access the code for this project, including the Shapefile, once you have registered,  click on CodeBin.


Banner


QuickSort Exposed

QuickSort was published in July 1961 and so is celebrating its 60th birthday.  QuickSort is the most elegant of algorithms and every programmer should study it. It is also subtle and this often m [ ... ]



Setting Up Site-To-Site OpenVPN

Setting up a point-to-point VPN is relatively easy but site-to-site is much more complicated involving certificates and more IP addresses than you can count. Find out how to do it using OpenVPN.


Other Projects




Last Updated ( Tuesday, 11 January 2011 )