WMTS

This sample demonstrates displaying an ESRI.ArcGIS.Client.ToolkitDataSources WmtsLayer. The WmtsLayer allows display of Open Geospatial Consortium (OGC) Web Map Tile Service (WMTS) layers.

Download Sample Application
XAML C# VB.NET
<UserControl x:Class="ArcGISWPFSDK.WmtsLayerSimple"
 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 WrapAround="True" Name="MyMap" Extent="-20037508.343,-8861125.013,20037508.343,8861125.013">
            <esri:WmtsLayer ServiceMode="RESTful" 
                  Url="http://sampleserver6.arcgisonline.com/arcgis/rest/services/WorldTimeZones/MapServer/WMTS" />
        </esri:Map>

    </Grid>
</UserControl>

Sample code usage restrictions
5/16/2014