<?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: Pan mode lockup with Feature Layer in IE8 in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418599#M38473</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: vpatel&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Derek - appreciate you looking into this, I will get back with you after running some tests.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Agree - I would prefer Steve's solution too , but since this is a public application no way to control end users choice of browser &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for your help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; Hey Vijay,&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt;Just sent you an email on this but I think the solution to the particular problem you're having is to set displayOnPan to false for feature layer. To target only IE, something like this does the trick:&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; &lt;PRE class="lia-code-sample line-numbers language-none"&gt;
featureLayer = new esri.layers.FeatureLayer(url, {
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_SNAPSHOT,
&amp;nbsp; maxAllowableOffset: calcMaxOffset(),
&amp;nbsp; outFields: ["'*"],
&amp;nbsp; visible: false, 
&amp;nbsp; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;displayOnPan: (!dojo.isIE)&lt;/SPAN&gt;
});
&lt;/PRE&gt; &lt;BR /&gt; &lt;BR /&gt;If it were up to me, I would prefer Steve's solution of not using IE ;).&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 18:56:15 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2021-12-11T18:56:15Z</dc:date>
    <item>
      <title>Pan mode lockup with Feature Layer in IE8</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418595#M38469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: vpatel&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems that in IE8 when using Feature layers&amp;nbsp; the map has a tendency to lock up in pan mode when a lot of panning is done on the map. During the lockup just moving the mouse (without holding down the left mouse button) will pan the map.&amp;nbsp; This behavior only seems to occurs in IE8 . Firefox, Safari and Chrome don't have this issue with lot of panning. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The issue can be replicated using the example and panning around a lot :&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/demos/fl/fl_hover.html"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/demos/fl/fl_hover.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyone - have any suggestions or workarounds (besides not using feature layer).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in Advance&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 23:31:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418595#M38469</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-12-14T23:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Pan mode lockup with Feature Layer in IE8</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418596#M38470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Anyone - have any suggestions or workarounds (besides not using feature layer).&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yeah - don't use IE.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just kidding - I've seen this before, too. I'm not an expert on this, but I think it's due to the way that IE renders features (it uses VML since SVG is &lt;/SPAN&gt;&lt;A href="http://social.msdn.microsoft.com/forums/en-US/iewebdevelopment/thread/9708e98c-d7ce-4d7e-a83b-6355430c29c3/"&gt;not supported&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ensure that you're serving the smallest possible features by using the maxAllowableOffset parameter - see the excellent blog post &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2011/06/13/Feature-layers-can-generalize-geometries-on-the-fly.aspx"&gt;here&lt;/A&gt;&lt;SPAN&gt; regarding this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 02:17:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418596#M38470</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2011-12-15T02:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Pan mode lockup with Feature Layer in IE8</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418597#M38471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: swingley&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey Vijay,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just sent you an email on this but I think the solution to the particular problem you're having is to set displayOnPan to false for feature layer. To target only IE, something like this does the trick:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
featureLayer = new esri.layers.FeatureLayer(url, {
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_SNAPSHOT,
&amp;nbsp; maxAllowableOffset: calcMaxOffset(),
&amp;nbsp; outFields: ["'*"],
&amp;nbsp; visible: false, 
&amp;nbsp; displayOnPan: (!dojo.isIE)
});
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If it were up to me, I would prefer Steve's solution of not using IE ;).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:26:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418597#M38471</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-12T16:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Pan mode lockup with Feature Layer in IE8</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418598#M38472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: vpatel&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks - I like your suggestion to not use IE , but we are stuck with the requirement to make it work in IE &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yeah - don't use IE.&lt;BR /&gt;&lt;BR /&gt;Just kidding - I've seen this before, too. I'm not an expert on this, but I think it's due to the way that IE renders features (it uses VML since SVG is &lt;A href="http://social.msdn.microsoft.com/forums/en-US/iewebdevelopment/thread/9708e98c-d7ce-4d7e-a83b-6355430c29c3/"&gt;not supported&lt;/A&gt;).&lt;BR /&gt; &lt;BR /&gt;Ensure that you're serving the smallest possible features by using the maxAllowableOffset parameter - see the excellent blog post &lt;A href="http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2011/06/13/Feature-layers-can-generalize-geometries-on-the-fly.aspx"&gt;here&lt;/A&gt; regarding this.&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Steve&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 03:22:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418598#M38472</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2011-12-15T03:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Pan mode lockup with Feature Layer in IE8</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418599#M38473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: vpatel&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Derek - appreciate you looking into this, I will get back with you after running some tests.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Agree - I would prefer Steve's solution too , but since this is a public application no way to control end users choice of browser &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for your help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; Hey Vijay,&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt;Just sent you an email on this but I think the solution to the particular problem you're having is to set displayOnPan to false for feature layer. To target only IE, something like this does the trick:&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; &lt;PRE class="lia-code-sample line-numbers language-none"&gt;
featureLayer = new esri.layers.FeatureLayer(url, {
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_SNAPSHOT,
&amp;nbsp; maxAllowableOffset: calcMaxOffset(),
&amp;nbsp; outFields: ["'*"],
&amp;nbsp; visible: false, 
&amp;nbsp; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;displayOnPan: (!dojo.isIE)&lt;/SPAN&gt;
});
&lt;/PRE&gt; &lt;BR /&gt; &lt;BR /&gt;If it were up to me, I would prefer Steve's solution of not using IE ;).&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:56:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418599#M38473</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T18:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pan mode lockup with Feature Layer in IE8</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418600#M38474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just wanted to say thanks for this solution, fixed it for me as well. Cheers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Dec 2011 01:44:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/pan-mode-lockup-with-feature-layer-in-ie8/m-p/418600#M38474</guid>
      <dc:creator>EdSaunders</dc:creator>
      <dc:date>2011-12-23T01:44:47Z</dc:date>
    </item>
  </channel>
</rss>

