<?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 Re: IsInScaleRange not working in Legend in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226112#M5753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Ver 3.2 nothing changed... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;The issue is supposed to be fixed with version 3.2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you mean that you still run into the issue after migrating to 3.2?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Dec 2013 13:15:26 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2013-12-09T13:15:26Z</dc:date>
    <item>
      <title>IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226105#M5746</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;SPAN&gt;I found a weird bug. I use a simple example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:Map x:Name="MyMap"&amp;nbsp; WrapAround="True"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISDynamicMapServiceLayer Url="http://myserver/arcgis/rest/services/objects/MapServer" /&amp;gt;
&amp;lt;/esri:Map&amp;gt;

&amp;lt;esri:Legend Map="{Binding ElementName=MyMap}" LayerItemsMode="Tree" ShowOnlyVisibleLayers="False" &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Legend.MapLayerTemplate&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;DataTemplate&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;StackPanel Orientation="Horizontal"&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;lt;CheckBox Content="{Binding Label}" IsChecked="{Binding IsEnabled, Mode=TwoWay}" 
&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; IsEnabled="{Binding IsInScaleRange}" &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;lt;/CheckBox&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;/StackPanel&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/DataTemplate&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Legend.MapLayerTemplate&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Legend.LayerTemplate&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;DataTemplate&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;CheckBox Content="{Binding Label}" IsChecked="{Binding IsEnabled, Mode=TwoWay}" 
&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; IsEnabled="{Binding IsInScaleRange}" &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;/CheckBox&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/DataTemplate&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Legend.LayerTemplate&amp;gt;
&amp;lt;/esri:Legend&amp;gt;&lt;/PRE&gt;&lt;SPAN&gt; It's ok. IsEnabled="{Binding IsInScaleRange}" works. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I add ArcGISTiledMapServiceLayer in the map before my ArcGISDynamicMapServiceLayer, I get:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- if ArcGISTiledMapServiceLayer is a tiled map service, IsInScaleRange works&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- if ArcGISTiledMapServiceLayer is a image service, IsInScaleRange NOT works&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:ArcGISTiledMapServiceLayer ShowLegend="False" Url="http://myserver/arcgis/rest/services/base/MapServer" /&amp;gt;
&amp;lt;esri:ArcGISTiledMapServiceLayer ShowLegend="False" Url="http://myserver/arcgis/rest/services/ortho/ImageServer" /&amp;gt;&lt;/PRE&gt;&lt;SPAN&gt; I don't want to use ArcGISImageServiceLayer for the ImageServer, because ArcGISImageServiceLayer displayed very slowly. Why is it not working?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;PS: This example works fine on JavaScript, but not work on SL.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:12:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226105#M5746</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2021-12-12T16:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226106#M5747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Could you share the URL of the non working service?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 06:41:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226106#M5747</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-05-13T06:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226107#M5748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok. But I need some time to prepare test services and publish them for you. My services now is private.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2013 07:04:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226107#M5748</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2013-05-13T07:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226108#M5749</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;SPAN&gt;Map Service: &lt;/SPAN&gt;&lt;A href="http://93.170.14.50:6080/arcgis/rest/services/map/MapServer"&gt;http://93.170.14.50:6080/arcgis/rest/services/map/MapServer&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Image Service: &lt;/SPAN&gt;&lt;A href="http://93.170.14.50:6080/arcgis/rest/services/mosaic/ImageServer"&gt;http://93.170.14.50:6080/arcgis/rest/services/mosaic/ImageServer&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 08:40:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226108#M5749</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2013-05-15T08:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226109#M5750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I eventually reproduced the issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We'll try to get it fixed in a future version.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Meanwhile, the workaround may be to set the Layer minimum and MaximumResolution accordinly with the min and max scale defined at server side.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for reporting that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 May 2013 08:42:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226109#M5750</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-05-17T08:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226110#M5751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When the expected release of a new version?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 03:19:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226110#M5751</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2013-05-20T03:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226111#M5752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ver 3.2 nothing changed... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Dec 2013 03:40:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226111#M5752</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2013-12-09T03:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226112#M5753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Ver 3.2 nothing changed... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;The issue is supposed to be fixed with version 3.2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you mean that you still run into the issue after migrating to 3.2?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Dec 2013 13:15:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226112#M5753</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-12-09T13:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226113#M5754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, dbroux.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After migration to 3.2 IsInScaleRange work fine for map-layers in WGS84, but if I use custom spatial reference this bug still exists. Now I'm experimenting to confirm this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll tell the result later.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Dec 2013 02:13:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226113#M5754</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2013-12-10T02:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226114#M5755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Confirmation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IsInScaleRange changing, if I use spatial reference WKID=102100 (wgs84 web mercator). For custom SR IsInScaleRange not work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 06:00:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226114#M5755</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2014-01-14T06:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226115#M5756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3928"&gt;Dominique Broux&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;This issue sounds similar to something that we've been dealing with. The map scales are different by a very small decimal number, and so we have layers that disappear when they are at the maximum zoom (not beyond). Could be causing IsInScaleRange to go wrong, too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/91762"&gt;3.2 And ArcGISTiledMapServiceLayer&amp;amp;amp;nbsp; MinimumResolution Property&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/91208"&gt;Custom base map minimum scale fails to load in version 3.2&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 22:49:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226115#M5756</guid>
      <dc:creator>deleted-user-Jie3eyjOl9XM</dc:creator>
      <dc:date>2014-08-19T22:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: IsInScaleRange not working in Legend</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226116#M5757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Yes!!!&lt;/P&gt;&lt;P&gt;If I use ArcGISTiledMapServiceLayer in Map, IsInScaleRange not work on layers in another ArcGISDynamicMapServiceLayer. If I not use ArcGISTiledMapServiceLayer all good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2014 06:43:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/isinscalerange-not-working-in-legend/m-p/226116#M5757</guid>
      <dc:creator>AlekseyShulga</dc:creator>
      <dc:date>2014-09-29T06:43:24Z</dc:date>
    </item>
  </channel>
</rss>

