<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic bug in/ or wrong usage of Navigation control using FullExtent button in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379540#M9817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm doing the following&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've cleared the Map layers collection, set the map extent to the extent and spatialreference of my second layer. Then add both my layers. The first layer originally has a different spatialreference but now is reprojected by the Map control to match the spatialreference of my second layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, my program will crash if I click "FullExtent" in the Navigation control.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Looking at the code the following happens:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FullExtent Button Click handler:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; private void ZoomFullExtent_Click(object sender, RoutedEventArgs e)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; if (Map != null)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Map.ZoomTo(Map.Layers.GetFullExtent());
&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;this calls Map.Layers.GetFullExtent() where the "error" occurs:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;public Envelope GetFullExtent()
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (base.Count == 0)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return null;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; Envelope extent = null;
&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialReference spatialReference = null;
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Layer layer in this)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ((layer != null) &amp;amp;&amp;amp; (layer.SpatialReference != null))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialReference = layer.SpatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Layer layer2 in this)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Envelope fullExtent = layer2.FullExtent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (((fullExtent != null) &amp;amp;&amp;amp; SpatialReference.AreEqual(fullExtent.SpatialReference, spatialReference, true)) &amp;amp;&amp;amp; (fullExtent != null))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extent = fullExtent.Union(extent);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; return extent;
}&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following piece of code sets the extent to which the map should zoom to but uses the original spatialreference of the first layer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ((layer != null) &amp;amp;&amp;amp; (layer.SpatialReference != null))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialReference = layer.SpatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Shouldn't this code get the spatialreference from the Map control itself (when it contains layers) &lt;/SPAN&gt;&lt;PRE class="plain" name="code"&gt;spatialReference = Map.FullExtent.SpatialReference&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm I correct or just doing stuff the wrong way?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My idea was that the Map control would do the reprojection of the basemap for me, so i don't have to create a basemap for each different spatialreference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I forgot to mention that the Map.ZoomTo() operation will fail because the SpatialReference doesn't match the spatial reference currently used by the map, thus crashing the app.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Mar 2011 19:18:41 GMT</pubDate>
    <dc:creator>BKuiper</dc:creator>
    <dc:date>2011-03-21T19:18:41Z</dc:date>
    <item>
      <title>bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379540#M9817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm doing the following&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've cleared the Map layers collection, set the map extent to the extent and spatialreference of my second layer. Then add both my layers. The first layer originally has a different spatialreference but now is reprojected by the Map control to match the spatialreference of my second layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, my program will crash if I click "FullExtent" in the Navigation control.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Looking at the code the following happens:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FullExtent Button Click handler:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; private void ZoomFullExtent_Click(object sender, RoutedEventArgs e)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; if (Map != null)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Map.ZoomTo(Map.Layers.GetFullExtent());
&amp;nbsp; }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;this calls Map.Layers.GetFullExtent() where the "error" occurs:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;public Envelope GetFullExtent()
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (base.Count == 0)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return null;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; Envelope extent = null;
&amp;nbsp;&amp;nbsp;&amp;nbsp; SpatialReference spatialReference = null;
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Layer layer in this)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ((layer != null) &amp;amp;&amp;amp; (layer.SpatialReference != null))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialReference = layer.SpatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Layer layer2 in this)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Envelope fullExtent = layer2.FullExtent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (((fullExtent != null) &amp;amp;&amp;amp; SpatialReference.AreEqual(fullExtent.SpatialReference, spatialReference, true)) &amp;amp;&amp;amp; (fullExtent != null))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extent = fullExtent.Union(extent);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; return extent;
}&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following piece of code sets the extent to which the map should zoom to but uses the original spatialreference of the first layer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ((layer != null) &amp;amp;&amp;amp; (layer.SpatialReference != null))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialReference = layer.SpatialReference;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Shouldn't this code get the spatialreference from the Map control itself (when it contains layers) &lt;/SPAN&gt;&lt;PRE class="plain" name="code"&gt;spatialReference = Map.FullExtent.SpatialReference&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm I correct or just doing stuff the wrong way?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My idea was that the Map control would do the reprojection of the basemap for me, so i don't have to create a basemap for each different spatialreference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I forgot to mention that the Map.ZoomTo() operation will fail because the SpatialReference doesn't match the spatial reference currently used by the map, thus crashing the app.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 19:18:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379540#M9817</guid>
      <dc:creator>BKuiper</dc:creator>
      <dc:date>2011-03-21T19:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379541#M9818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you using Toolkit.Navigation &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Navigation" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Navigation&lt;/A&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the following code for switching base layer of different spatial reference. I am able to use the Navigation control to pan, rotate and zoom without problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void RadioButton_Click(object sender, RoutedEventArgs e)
{
 ArcGISTiledMapServiceLayer layer = this.LayoutRoot.Resources[((RadioButton)sender).Tag] as ArcGISTiledMapServiceLayer;
 if (layer.IsInitialized)
&amp;nbsp; UpdateMap(layer);
 else
 {
&amp;nbsp; layer.Initialized += (s, a) =&amp;gt; { UpdateMap(s as ArcGISTiledMapServiceLayer); };
&amp;nbsp; layer.Initialize();
 }
}

private void UpdateMap(ArcGISTiledMapServiceLayer layer)
{
 MyMap.Layers.Clear();
 MyMap.Extent = new Envelope()
 {
&amp;nbsp; XMin = layer.FullExtent.XMin,
&amp;nbsp; YMin = layer.FullExtent.YMin,
&amp;nbsp; XMax = layer.FullExtent.XMax,
&amp;nbsp; YMax = layer.FullExtent.YMax,
&amp;nbsp; SpatialReference = layer.SpatialReference
 };
 MyMap.Layers.Add(layer);
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;Grid.Resources&amp;gt;
 &amp;lt;esri:ArcGISTiledMapServiceLayer x:Key="Base3857"&amp;nbsp; ID="Base3857" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/&amp;gt;
 &amp;lt;esri:ArcGISTiledMapServiceLayer x:Key="Base4326"&amp;nbsp; ID="Base4326"
&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/TaxParcel/AssessorsBasemap/MapServer"/&amp;gt;
&amp;lt;/Grid.Resources&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:31:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379541#M9818</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T17:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379542#M9819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jennifer, thanks for taking the time to answer my question,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your response made me rethink what i'm doing and I want to try explain a bit more on what i'm trying to achieve.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have two different layers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. usa basemap, spatialreference wkid: 102100 (3857)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. national park, spatialreference wkid: 26912&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to add both layers to a Map control and then zoom to the extent of the second (2) layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm currently achieving this by reading the spatial reference of layer 2, clearing the Map layers collection, setting the extent and spatialreference of the Map control to that of layer 2 and then adding both layers and zooming to the extent of layer 2. This works, but breaks the "Zoom to Fullextent" button (right bottom corner) of the Navigation control (part of the toolkit).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It crashes the application because it tries to use the spatialreference of the first layer in the collection, but this spatialreference doesn't match the spatialreference of the Map. Therefore I think this is a bug and should use the spatialreference of the Map when the Map control contains items in the Layer collection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So to summarize it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Is there an easier way to add two layers with different spatial references and zooming in to the extent of the second layer, or is my proposed solution the way to do it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- If my proposed solution is correct, then there is possibly a bug in the code when clicking "Zoom to Full extent" of the Navigation Control which is part of the Toolkit.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this better explains what i'm trying to do&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for the time and effort to help me out&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 15:12:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379542#M9819</guid>
      <dc:creator>BKuiper</dc:creator>
      <dc:date>2011-03-22T15:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379543#M9820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can look at this documentation: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Map~SpatialReference.html"&gt;http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Map~SpatialReference.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Map's Spatial Reference is determined by the first layer with Spatial Reference. So if you want layer 2's Spatial Reference, you need to clear Map.Layers first, and add layer 2 as the first layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT: Thank you for reporting this bug. We'll try to get it fixed in future versions of our API. For the time-being, you can re-arrange your layers so that the first layer has the desired spatial reference.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 19:27:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379543#M9820</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-03-22T19:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379544#M9821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jennifer, thanks again for your reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Adding layer 2 first and then layer 1 is not an option. Layer 1 is a basemap and will cover layer 2 making it invisible. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could then consider moving (switching) the layers after the map is initialized, but that will re-introduce the same problem again, the "Zoom to Full Extent" button will fail because it will use the SR of layer 1 which is different then the SR of the Map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the Map.ZoomTo(Map.Layers.GetFullExtent()) in the click event of the "Zoom to Full Extent" button should be checking if the layer is matching the SR of the Map and use that extent.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I could log a proper bug report if you want? So we can take it offline from the forum and discuss and track it there? What is the best place to do this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I posted it here first to check if I was using the right approach or not.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 20:14:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379544#M9821</guid>
      <dc:creator>BKuiper</dc:creator>
      <dc:date>2011-03-22T20:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379545#M9822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I had just created a work item for this to fix Layers.GetFullExtent() so that it uses the map's spatial reference if it had already been set, otherwise, use the first layer with spatial reference. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You don't need to create a bug report unless you want to. You can submit through our tech support. &lt;/SPAN&gt;&lt;A href="http://support.esri.com/en/"&gt;http://support.esri.com/en/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 20:42:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379545#M9822</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-03-22T20:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379546#M9823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Great, thanks! Feel free to contact me if you or any of the other developers wants to recreate the problem when fixing this issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2011 18:57:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379546#M9823</guid>
      <dc:creator>BKuiper</dc:creator>
      <dc:date>2011-03-23T18:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379547#M9824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was wondering if this bug has been fixed? I'm going through the exact same issue ie I have two layers, and the map needs to be able to zoom to full extent w.r.t. the secondary layer. I assign the full extent of the secondary map layer to the map before any layers are added. Everything else works in the navigation control except for the full extent button. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If it hasn't been fixed, is there a way to remove the full extent button from the control?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 12:12:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379547#M9824</guid>
      <dc:creator>SangamLama</dc:creator>
      <dc:date>2011-04-12T12:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379548#M9825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Not sure if there is a fix, but you can just edit the default style or make your own style that doesn't include the "FullExtent" button.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I made the following changes to the default style:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I commented the following&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; &amp;lt;!--&amp;lt;Button x:Name="ZoomFullExtent" Height="25" FontSize="8" Width="25" ToolTipService.ToolTip="Full Extent" Margin="2,2,2,0" Style="{StaticResource NavButtonStyle}"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Button.Content&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Image Source="/ATMPWeb.Silverlight.Library;component/Images/i_globe.png" Stretch="Fill" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Button.Content&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Button&amp;gt;--&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And changed -125 to -100 (how high the popup should go)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; &amp;lt;DoubleAnimation x:Name="showButtonsAnim" Duration="00:00:00.3" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Storyboard.TargetName="PopoutGrid" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Storyboard.TargetProperty="(Canvas.Top)" To="-100" /&amp;gt; &amp;lt;!-- -125 --&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Storyboard&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:31:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379548#M9825</guid>
      <dc:creator>BKuiper</dc:creator>
      <dc:date>2021-12-11T17:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379549#M9826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;where is this code that you're editing? all I do to use the navigation control is &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Grid.Row="2" VerticalAlignment="Bottom"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri2:Navigation x:Name="MyNavigation" Margin="5"&amp;gt;&amp;lt;/esri2:Navigation&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/StackPanel&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and I assign the map from the codebehind. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Not sure if there is a fix, but you can just edit the default style or make your own style that doesn't include the "FullExtent" button.&lt;BR /&gt;&lt;BR /&gt;I made the following changes to the default style:&lt;BR /&gt;&lt;BR /&gt;I commented the following&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;PRE class="lia-code-sample line-numbers language-none"&gt; &amp;lt;!--&amp;lt;Button x:Name="ZoomFullExtent" Height="25" FontSize="8" Width="25" ToolTipService.ToolTip="Full Extent" Margin="2,2,2,0" Style="{StaticResource NavButtonStyle}"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Button.Content&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Image Source="/ATMPWeb.Silverlight.Library;component/Images/i_globe.png" Stretch="Fill" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Button.Content&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Button&amp;gt;--&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;And changed -125 to -100 (how high the popup should go)&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;PRE class="lia-code-sample line-numbers language-none"&gt; &amp;lt;DoubleAnimation x:Name="showButtonsAnim" Duration="00:00:00.3" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Storyboard.TargetName="PopoutGrid" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Storyboard.TargetProperty="(Canvas.Top)" To="-100" /&amp;gt; &amp;lt;!-- -125 --&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Storyboard&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Hope that helps&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:31:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379549#M9826</guid>
      <dc:creator>SangamLama</dc:creator>
      <dc:date>2021-12-11T17:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379550#M9827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;where is this code that you're editing? all I do to use the navigation control is &lt;BR /&gt;&lt;BR /&gt;&amp;lt;StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Grid.Row="2" VerticalAlignment="Bottom"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri2:Navigation x:Name="MyNavigation" Margin="5"&amp;gt;&amp;lt;/esri2:Navigation&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/StackPanel&amp;gt;&lt;BR /&gt;&lt;BR /&gt;and I assign the map from the codebehind.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;See the attachment. It has a default Esri Map Application. The Navigation control uses a (WPF) Style. The style is specified in the NavigationStyle.xaml file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm just using WPF Styling to change the look and feel of the Navigation control.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 15:12:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379550#M9827</guid>
      <dc:creator>BKuiper</dc:creator>
      <dc:date>2011-04-12T15:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: bug in/ or wrong usage of Navigation control using FullExtent button</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379551#M9828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Handy workaround. I couldn't get that zoom slider to appear, but the rest was pretty useful. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Appreciate your help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;See the attachment. It has a default Esri Map Application. The Navigation control uses a (WPF) Style. The style is specified in the NavigationStyle.xaml file.&lt;BR /&gt;&lt;BR /&gt;I'm just using WPF Styling to change the look and feel of the Navigation control.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2011 19:12:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/bug-in-or-wrong-usage-of-navigation-control-using/m-p/379551#M9828</guid>
      <dc:creator>SangamLama</dc:creator>
      <dc:date>2011-04-14T19:12:36Z</dc:date>
    </item>
  </channel>
</rss>

