<?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: Horizontal/vertical Lines appear while panning map in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610167#M57108</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I'll look into it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT: I've tried it on other machines and browsers, it seems to be just on the developer machine using Chrome, that those lines between the tiles appear -.-&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Mar 2012 12:13:36 GMT</pubDate>
    <dc:creator>Salomon_VágadalJoensen</dc:creator>
    <dc:date>2012-03-01T12:13:36Z</dc:date>
    <item>
      <title>Horizontal/vertical Lines appear while panning map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610165#M57106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a 250px X 250px map which, when panning, there will appear horizontal and vertical lines intermittently. I'm at a loss what could be causing this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The map code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.require("esri.map");

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var map;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sms =&amp;nbsp; new esri.symbol.SimpleMarkerSymbol(esri.symbol.SimpleMarkerSymbol.STYLE_DIAMOND, 10,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new dojo.Color([255,0,0]), 2),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new dojo.Color([0,255,0,0.25]));

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var mLoc = new esri.geometry.Point(615839.4083,6877702.1883, new esri.SpatialReference({ wkid: 32629 }));&amp;nbsp; 

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function init() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var initExtent = new esri.geometry.Extent( {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "xmax": 615930.5776797816,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "xmin": 615754.1002434933,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ymax": 6877746.606664156,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ymin": 6877660.616908844,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "spatialReference": {
&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; "wkid":32629
&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; map = new esri.Map("map",{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extent: initExtent,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; logo: false
&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; //Add the topographic layer to the map. View the ArcGIS Online site for services http://arcgisonline/home/search.html?t=content&amp;amp;f=typekeywords:service&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var basemap = new esri.layers.ArcGISTiledMapServiceLayer("http://www.kort.fo:8089/ArcGIS/rest/services/munin/Muninkort-vegir2/MapServer");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addLayer(basemap);
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Might it have something to do with this in the HTML?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;div style="position: relative;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="map" style="position: absolute; bottom: 0; right: 0; width: 250px; height: 250px; background: #99B3CC;" &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Reason for that background is for displaying the ocean colour in the map div.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:41:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610165#M57106</guid>
      <dc:creator>Salomon_VágadalJoensen</dc:creator>
      <dc:date>2021-12-12T16:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal/vertical Lines appear while panning map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610166#M57107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I get this too. It's because the map is made of tiles and you are seeing a little space in-between while zooming or panning. Maybe you could try to use HTML5 Canvas and CSS3 transitions. I'm not sure if it will help though. It also depends on the browser you are using.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Be careful using the HTML5 features. Many features will only work on the newest browsers. I don't think HTML5 Canvas is supported in IE until version 9 or 10 for example.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2012 12:08:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610166#M57107</guid>
      <dc:creator>MattMoyles</dc:creator>
      <dc:date>2012-03-01T12:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal/vertical Lines appear while panning map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610167#M57108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I'll look into it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT: I've tried it on other machines and browsers, it seems to be just on the developer machine using Chrome, that those lines between the tiles appear -.-&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2012 12:13:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610167#M57108</guid>
      <dc:creator>Salomon_VágadalJoensen</dc:creator>
      <dc:date>2012-03-01T12:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Horizontal/vertical Lines appear while panning map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610168#M57109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am also experiencing this issue, and only noticed it happening when I moved from 3.2 to 3.3 API.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;&lt;A href="http://jsfiddle.net/jakc/UQgh9/"&gt;JSFIddle of Canvas on a Black Background using 3.3&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;&lt;A href="http://jsfiddle.net/jakc/NQ2te/"&gt;JSFiddle of Canvas on a Black Background using 3.2&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;BR /&gt;&lt;STRONG&gt;To Replicate:&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Just go a bit crazy zooming in and out with a clean browser cache.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Im particularly finding that IE9 is the biggest culprit, but can also replicate in Chrome and Firefox.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I cannot replicate in 3.2 but I can in 3.3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I also need to have a black background due to when the user makes the basemap transparent, the map becomes black so that another service stands out on top of the black.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Im also noticing that it is not as apparent in JFiddle, but is more so from my main application, not too sure on the reasons why, maybe because there are a few other GET requests going on, its taking a little longer to render the new tiles perhaps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To me this is a potential bug. But I am sure you made the changes for a good reason.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I notice that apart from this post that I have hijacked, I have seen others reporting this over &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/61871-Black-lines-between-tiles-on-zoom?p=213915#post213915"&gt;here &lt;/A&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/66551-JS-API-amp-Dojo-1.8?p=231865&amp;amp;viewfull=1#post231865"&gt;here&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Whats your thoughts?&amp;nbsp; Create a NIM at your end, or/and can you suggest a workaround in the interim?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2013 08:30:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/horizontal-vertical-lines-appear-while-panning-map/m-p/610168#M57109</guid>
      <dc:creator>SimonJackson</dc:creator>
      <dc:date>2013-01-16T08:30:16Z</dc:date>
    </item>
  </channel>
</rss>

