<?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 Print task scale bar accuracy question in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/225998#M21038</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using the print task in v3.5 to output a pdf. The scalebar on the pdf is not accurate however, it's about 0.3 miles short when compared to section lines on the map (see attached pdf). I'm using the preserveScale = true option. I have the scalebar units set to miles, and have experimented with setting the units of the basemap as well - nothing makes an improvement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any thoughts? &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, 10 Jun 2013 14:52:56 GMT</pubDate>
    <dc:creator>MikeKillion</dc:creator>
    <dc:date>2013-06-10T14:52:56Z</dc:date>
    <item>
      <title>Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/225998#M21038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using the print task in v3.5 to output a pdf. The scalebar on the pdf is not accurate however, it's about 0.3 miles short when compared to section lines on the map (see attached pdf). I'm using the preserveScale = true option. I have the scalebar units set to miles, and have experimented with setting the units of the basemap as well - nothing makes an improvement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any thoughts? &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, 10 Jun 2013 14:52:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/225998#M21038</guid>
      <dc:creator>MikeKillion</dc:creator>
      <dc:date>2013-06-10T14:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/225999#M21039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try giving width, height in export options of PrintTemplate&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var plate = new esri.tasks.PrintTemplate();
&amp;nbsp;&amp;nbsp;&amp;nbsp; plate.format = "pdf";
&amp;nbsp;&amp;nbsp;&amp;nbsp; plate.layout = "MAP_ONLY"; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; plate.exportOptions = {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: map.width,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: map.height,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dpi: 96
&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 11:00:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/225999#M21039</guid>
      <dc:creator>VinayBansal</dc:creator>
      <dc:date>2021-12-11T11:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226000#M21040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Setting width and height in the export options had no effect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's the print function I'm currently using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
function printPDF() {
&amp;nbsp; 
&amp;nbsp; var printUrl = 'http://services.kgs.ku.edu/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task';
&amp;nbsp; var printTask = new esri.tasks.PrintTask(printUrl);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var params = new esri.tasks.PrintParameters();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var template = new esri.tasks.PrintTemplate(); 
&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; template.layout = layout;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // layout set elsewhere
&amp;nbsp; template.format = "PDF";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; template.preserveScale = true;
&amp;nbsp; template.showAttribution = false;
&amp;nbsp; template.layoutOptions = {
&amp;nbsp;&amp;nbsp; scaleBarUnit: "Miles",
&amp;nbsp;&amp;nbsp; titleText: title,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // title set elsewhere
&amp;nbsp;&amp;nbsp; legendLayers: []
&amp;nbsp; };
&amp;nbsp; 

&amp;nbsp; params.map = app.map;
&amp;nbsp; params.outSpatialReference = sr;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // sr set elsewhere to 102100, also tried setting it to 3857
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; params.template = template;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printTask.execute(params, printResult, printError);
&amp;nbsp; 
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't expect it to be exact - I know our section lines aren't exactly a mile apart. But this seems way off. At a scale of about 1:72000, 2 miles on the scale bar is only about 1.5 miles on the map. Has anyone else noticed something like this? Can any ESRI folks comment?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 11:00:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226000#M21040</guid>
      <dc:creator>MikeKillion</dc:creator>
      <dc:date>2021-12-11T11:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226001#M21041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;what is the coordinate system of your basemap?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 14:05:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226001#M21041</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2013-06-11T14:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226002#M21042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The basemap is the World_Topo_Map, so the spatial reference is 102100 (3857).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 14:56:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226002#M21042</guid>
      <dc:creator>MikeKillion</dc:creator>
      <dc:date>2013-06-11T14:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226003#M21043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;that isn't a projection that preserves distance accurately, so it wouldn't be appropriate to display a scalebar.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 15:16:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226003#M21043</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2013-06-11T15:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226004#M21044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;To remove the scalebar, do I have to create a custom mxd to use as a template?&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, 11 Jun 2013 15:22:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226004#M21044</guid>
      <dc:creator>MikeKillion</dc:creator>
      <dc:date>2013-06-11T15:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226005#M21045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;no problem at all.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;it wouldn't take long to &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/#/Tutorial_Publishing_additional_services_for_printing/0154000005n1000000/"&gt;publish additional services for printing&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; the steps in the tutorial explain that you are welcome to reuse (and tweak) our installed templates.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;you can also feel free to navigate to the MXD template our OOTB print services utilize and remove the scalebar from that MXD if you prefer. (ex. .\Program Files\ArcGIS\Server\Templates\ExportWebMapTemplates\A3 Landscape.mxd)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 15:44:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226005#M21045</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2013-06-11T15:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226006#M21046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option is to set the projection of your print task template map to that of the data if you want to keep the scale bar and have it accurate. This can cause a slightly longer print task processing time with tiled web mercator layers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 16:45:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226006#M21046</guid>
      <dc:creator>BenFousek</dc:creator>
      <dc:date>2013-06-11T16:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226007#M21047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Another option is to set the projection of your print task template map to that of the data if you want to keep the scale bar and have it accurate&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@ben&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i dont think thats actually correct.&amp;nbsp; its my understanding that the projection of the print output will be determined by the spatial reference which is passed within the WebMapJSON.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 16:47:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226007#M21047</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2013-06-11T16:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226008#M21048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;@ben&lt;BR /&gt;i dont think thats actually correct.&amp;nbsp; its my understanding that the projection of the print output will be determined by the spatial reference which is passed within the WebMapJSON.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yep. And here I had been using that reasoning for a couple of print tasks. Will be spending the day fixing that with an extent reprojection.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 17:02:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226008#M21048</guid>
      <dc:creator>BenFousek</dc:creator>
      <dc:date>2013-06-11T17:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226009#M21049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Will be spending the day fixing that with an extent reprojection.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Already taken care of. Set outSpatialReference of esri.tasks.PrintParameters.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 17:39:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226009#M21049</guid>
      <dc:creator>BenFousek</dc:creator>
      <dc:date>2013-06-11T17:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226010#M21050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;excellent.&amp;nbsp; thanks for sharing!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 18:10:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226010#M21050</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2013-06-11T18:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226011#M21051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was already setting the outSpatialReference when I was seeing the problem. It's set to 102100 to match the web map. Are you saying it should be set to match the spatial reference of the dataframe in the template mxd?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 14:00:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226011#M21051</guid>
      <dc:creator>MikeKillion</dc:creator>
      <dc:date>2013-06-12T14:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226012#M21052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;i think Ben is suggesting setting the outSpatialReference to a coordinate system which accurately portrays distance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 14:06:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226012#M21052</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2013-06-12T14:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226013#M21053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes. You can output in any spatial reference you would like. So if your data is in some state plane projection you can set outSpatialReference to that projection and that will be what is output.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My mistake was thinking that if I set the projection of the data frame in the template it would output in that projection, but the print task overrides it. Foolishly I didn't test that theory. Setting outSpatialReference fixed it and I'm getting accurate scales.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If outSpatialReference is not set it uses the map's projection (102100).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You may also want to set preserveScale to false if your output has different units (feet not meters); else the extent of the output will be different than the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;var template = esri.tasks.PrintTemplate(); template.preserveScale = false;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 14:13:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226013#M21053</guid>
      <dc:creator>BenFousek</dc:creator>
      <dc:date>2013-06-12T14:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Print task scale bar accuracy question</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226014#M21054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That did it - I misunderstood what outSpatialReference did.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks guys!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 14:25:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-task-scale-bar-accuracy-question/m-p/226014#M21054</guid>
      <dc:creator>MikeKillion</dc:creator>
      <dc:date>2013-06-12T14:25:47Z</dc:date>
    </item>
  </channel>
</rss>

