<?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: Get map in Web_Map_as_JSON format in JavaScript in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118320#M11012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sure thing!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Sep 2013 20:46:10 GMT</pubDate>
    <dc:creator>HaoHu</dc:creator>
    <dc:date>2013-09-21T20:46:10Z</dc:date>
    <item>
      <title>Get map in Web_Map_as_JSON format in JavaScript</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118316#M11008</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 was trying to export map using Export Web Map Task, but I don't know how can I specify the map object in Web_Map_as_JSON format. Anyone has solutions? Or is there a better way to export the map(including all types of layers)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 21:07:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118316#M11008</guid>
      <dc:creator>HaoHu</dc:creator>
      <dc:date>2013-09-20T21:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Get map in Web_Map_as_JSON format in JavaScript</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118317#M11009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The map object is included in &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/en/javascript/jsapi/printparameters-amd.html" rel="nofollow" target="_blank"&gt;PrintParameters &lt;/A&gt;&lt;SPAN&gt;object which will be fed to &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/en/javascript/jsapi/printtask-amd.html" rel="nofollow" target="_blank"&gt;PrintTask &lt;/A&gt;&lt;SPAN&gt;for execution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;require([ &amp;nbsp; "esri/map", "esri/tasks/PrintTask", "esri/tasks/PrintParameters", ...&amp;nbsp; ], function(Map, PrintTask, PrintParameters, ... ) { &amp;nbsp; var map = new Map( ... ); &amp;nbsp; var printTask = new PrintTask( ... ); &amp;nbsp; var params = new PrintParameters(); &amp;nbsp; params.map = map; &amp;nbsp;&amp;nbsp; &amp;nbsp; printTask.execute(params, printResult); &amp;nbsp; ... });&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can also use &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/en/javascript/jsapi/print-amd.html" rel="nofollow" target="_blank"&gt;Print &lt;/A&gt;&lt;SPAN&gt;dijit to print map. Here are some &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/en/javascript/jssamples/#search/Print" rel="nofollow" target="_blank"&gt;samples&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Sep 2013 23:15:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118317#M11009</guid>
      <dc:creator>JasonZou</dc:creator>
      <dc:date>2013-09-20T23:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get map in Web_Map_as_JSON format in JavaScript</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118318#M11010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Jason, your code really helps!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Sep 2013 02:57:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118318#M11010</guid>
      <dc:creator>HaoHu</dc:creator>
      <dc:date>2013-09-21T02:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Get map in Web_Map_as_JSON format in JavaScript</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118319#M11011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Glad to help. If you think your question has been answered, can you mark your thread as "Answered" so other people may find it helpful? Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Sep 2013 19:12:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118319#M11011</guid>
      <dc:creator>JasonZou</dc:creator>
      <dc:date>2013-09-21T19:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get map in Web_Map_as_JSON format in JavaScript</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118320#M11012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sure thing!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Sep 2013 20:46:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/get-map-in-web-map-as-json-format-in-javascript/m-p/118320#M11012</guid>
      <dc:creator>HaoHu</dc:creator>
      <dc:date>2013-09-21T20:46:10Z</dc:date>
    </item>
  </channel>
</rss>

