Navigation

This sample demonstrates the Toolkit's Navigation control. This control provides a zoom slider, buttons to pan and zoom to full extent, and a ring to rotate the map. As the sample XAML shows, use of the Navigation control just requires declaring a Navigation element and binding to a Map control.
Download Sample Application<UserControl x:Class="ArcGISWPFSDK.LocalNavigation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:esri="http://schemas.esri.com/arcgis/client/2009"> <Grid x:Name="LayoutRoot" Background="White"> <esri:Map x:Name="MyMap" Extent="-15000000,2000000,-7000000,8000000" WrapAround="True"> <esri:ArcGISLocalTiledLayer ID="myBaseMap" Path="..\\Data\\TPKs\\Topographic.tpk"/> </esri:Map> <esri:Navigation Margin="5" HorizontalAlignment="Left" VerticalAlignment="Bottom" Map="{Binding ElementName=MyMap}" /> </Grid> </UserControl>
5/16/2014