<?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: Using shp-write to export as shapefile in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274631#M25342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i understand. Your just doing this a way I'm not familiar with. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 May 2015 21:20:10 GMT</pubDate>
    <dc:creator>deleted-user-Pi5x1UjkS2PY</dc:creator>
    <dc:date>2015-05-22T21:20:10Z</dc:date>
    <item>
      <title>Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274622#M25333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using the advanced draw tools (modified to fit my needs) that Tim Witt has created (&lt;A href="https://community.esri.com/migration-blogpost/1200"&gt;Javascript API - Advanced Draw widget&lt;/A&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I would like to be able to do is allow a user to save his/her changes to a file so that when they can come back in a latter session they can load any markups that they did before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found a way to load the files back in if I can zip them all into one file using this (&lt;A href="https://developers.arcgis.com/javascript/jssamples/portal_addshapefile.html" title="https://developers.arcgis.com/javascript/jssamples/portal_addshapefile.html"&gt;Add shapefile | ArcGIS API for JavaScript&lt;/A&gt; ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I've been desperately trying to find a way to create a zip file so that I can save a users drawings.&amp;nbsp; I ran into this code and downloaded it as it sounds like it will do exactly what I want.&amp;nbsp; I can't get it to work though.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/mapbox/shp-write" title="https://github.com/mapbox/shp-write"&gt;mapbox/shp-write · GitHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use this in a function for a save button.&lt;/P&gt;&lt;P&gt;I added this at the top:&lt;/P&gt;&lt;P&gt;&amp;lt;script src='shp-write-master/bundle.js'&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then tried adding in the require statement in the function as you see below but then also at the top where I require everything else as well but my code does not get past my second alert box.&amp;nbsp; Has anyone used this before and have a simple example of how they called it or know what I am doing wrong here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; function fnSave() {&lt;BR /&gt; alert("Still a work in progress");&lt;BR /&gt;&amp;nbsp; var shpwrite = require('shp-write');&lt;BR /&gt; alert("Made it middle"); &lt;BR /&gt;&amp;nbsp; // (optional) set names for feature types and zipped folder&lt;BR /&gt;&amp;nbsp; var options = {&lt;BR /&gt;&amp;nbsp;&amp;nbsp; folder: 'myshapes',&lt;BR /&gt;&amp;nbsp;&amp;nbsp; //folder: 'L:\Javascript_Mobile\CAD2GIS\myshapes',&lt;BR /&gt;&amp;nbsp;&amp;nbsp; types: {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; point: 'mypoints',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; polygon: 'mypolygons',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line: 'mylines'&lt;BR /&gt;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt; alert("Made it middle");&amp;nbsp; &lt;BR /&gt;&amp;nbsp; // a GeoJSON bridge for features&lt;BR /&gt;&amp;nbsp; shpwrite.download({&lt;BR /&gt;&amp;nbsp;&amp;nbsp; type: 'FeatureCollection',&lt;BR /&gt;&amp;nbsp;&amp;nbsp; features: [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type: 'Feature',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry: {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type: 'Point',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; coordinates: [0, 0]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; properties: {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: 'Foo'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type: 'Feature',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry: {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type: 'Point',&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; coordinates: [0, 10]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; properties: {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: 'Bar'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ]&lt;BR /&gt;&amp;nbsp; }, options);&lt;/P&gt;&lt;P&gt;&amp;nbsp; alert("Made it end");&amp;nbsp; &lt;BR /&gt; }; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 12:04:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274622#M25333</guid>
      <dc:creator>deleted-user-Pi5x1UjkS2PY</dc:creator>
      <dc:date>2015-05-22T12:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274623#M25334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you get it to work please let me know, that would be a great addition to my tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 12:06:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274623#M25334</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2015-05-22T12:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274624#M25335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I definitely will.&amp;nbsp; Are you going to the conference in July?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 12:33:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274624#M25335</guid>
      <dc:creator>deleted-user-Pi5x1UjkS2PY</dc:creator>
      <dc:date>2015-05-22T12:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274625#M25336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wish I could, but I am located in Florida &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 12:41:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274625#M25336</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2015-05-22T12:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274626#M25337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apologies if this isn't helpful, but I have a runnable app that may get closer to getting in the right direction:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://runnable.com/VV9H5mX0cJ8jPR39/shp_zip_test-for-node-js" title="http://runnable.com/VV9H5mX0cJ8jPR39/shp_zip_test-for-node-js"&gt;http://runnable.com/VV9H5mX0cJ8jPR39/shp_zip_test-for-node-js&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can get it to a point where ~line 5642 in shpwrite.js logs some content to the app. The commented line above it "location.href = 'data:application/zip;base64,' + content;" is original from github, but it's throwing an error in runnable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps! This is a feature we are looking for as well...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 15:18:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274626#M25337</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-05-22T15:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274627#M25338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just realized "location" is a window function, so it'll error in the VM. The content looks to change when I update the points, so that's probably the file we're looking for (the encoded string written to the console is the shp zip).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 15:26:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274627#M25338</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-05-22T15:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274628#M25339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect! This looks like it's working - when I take the output in the console from my runnable app, which is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UEsDBAoAAAAAACOLtkYAAAAAAAAAAAAAAAAHAAAAbGF5ZXJzL1BLAwQKAAAAAAAji7ZGcWT+b5wAAACcAAAAEAAAAGxheWVycy9QT0lOVC5zaHAAACcKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABO6AMAAAEAAAAAAAAAAAAAAAAAAAAAAA&lt;/P&gt;&lt;P&gt;AAAAAAAAAAAAAAAAAAAAAkQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAKAQAAAAAAAAAAAAAAAAAAAAAAJEBQSwMECgAAAAAAI4u2Rj3sCVV0AAAAdAAAABAAAABsYXllcnMvUE9JTlQuc2h4AAAn&lt;/P&gt;&lt;P&gt;CgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOugDAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAAAAKAAAAQAAAAApQSwMECgAAAAAAI4u2RkyD+u8/AgAAPwIAABAAAABsYXllcnMvUE9JTl&lt;/P&gt;&lt;P&gt;QuZGJmA3MEFgIAAABBAP8AAAAAAAAAAAAAAAAAAAAAAAAAAABuYW1lAAAAAAAAAEMAAAAA/gAAAAAAAAAAAAAAAAAAAAAgRm9vICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg&lt;/P&gt;&lt;P&gt;ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC&lt;/P&gt;&lt;P&gt;AgICAgICAgICAgICAgICAgQmFyICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg&lt;/P&gt;&lt;P&gt;ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIBpQSwMECgAAAAAAI4u2RuPBUWqPAAAAjwAAABAAAABsYXllcnMvUE&lt;/P&gt;&lt;P&gt;9JTlQucHJqR0VPR0NTWyJHQ1NfV0dTXzE5ODQiLERBVFVNWyJEX1dHU18xOTg0IixTUEhFUk9JRFsiV0dTXzE5ODQiLDYzNzgxMzcsMjk4LjI1NzIyMzU2M11dLFBSSU1FTVsiR3JlZW53aWNoIiwwXSxVTklUWyJEZWdyZWUiLDAuMDE3NDUzMjkyNTE5OTQzMjk1XV1QSwEC&lt;/P&gt;&lt;P&gt;FAAKAAAAAAAji7ZGAAAAAAAAAAAAAAAABwAAAAAAAAAAABAAAAAAAAAAbGF5ZXJzL1BLAQIUAAoAAAAAACOLtkZxZP5vnAAAAJwAAAAQAAAAAAAAAAAAAAAAACUAAABsYXllcnMvUE9JTlQuc2hwUEsBAhQACgAAAAAAI4u2Rj3sCVV0AAAAdAAAABAAAAAAAAAAAAAAAAAA7w&lt;/P&gt;&lt;P&gt;AAAGxheWVycy9QT0lOVC5zaHhQSwECFAAKAAAAAAAji7ZGTIP67z8CAAA/AgAAEAAAAAAAAAAAAAAAAACRAQAAbGF5ZXJzL1BPSU5ULmRiZlBLAQIUAAoAAAAAACOLtkbjwVFqjwAAAI8AAAAQAAAAAAAAAAAAAAAAAP4DAABsYXllcnMvUE9JTlQucHJqUEsFBgAAAAAFAAUA&lt;/P&gt;&lt;P&gt;LQEAALsEAAAAAA==&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then decode it here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.opinionatedgeek.com/dotnet/tools/base64decode/" title="http://www.opinionatedgeek.com/dotnet/tools/base64decode/"&gt;Base 64 Decoder&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get a .bin file. When renamed to .zip, we get a shapefile:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="102516" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/102516_pastedImage_3.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just remember to go through shpwrite.js and fix all of the require module paths to reflect your app, and you'll need node.js?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 17:33:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274628#M25339</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-05-22T17:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274629#M25340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;​I wish I could follow you here as it sounds like you made this work. Can you walk me step by step what needs to happen if I wanted to use this code in something like this example below using a save button?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://timw1984.github.io/AdvancedDraw/" title="http://timw1984.github.io/AdvancedDraw/"&gt;Advanced Draw&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 18:26:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274629#M25340</guid>
      <dc:creator>deleted-user-Pi5x1UjkS2PY</dc:creator>
      <dc:date>2015-05-22T18:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274630#M25341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm going to need to look into it some more to see about getting it to work in my own app. It took some trial and error to just to get it working in the node.js VM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 18:58:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274630#M25341</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-05-22T18:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274631#M25342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i understand. Your just doing this a way I'm not familiar with. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 21:20:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274631#M25342</guid>
      <dc:creator>deleted-user-Pi5x1UjkS2PY</dc:creator>
      <dc:date>2015-05-22T21:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274632#M25343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you get this working, can you post the code here? I am very interested in being able to work in Advanced Draw with a simple save button. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2016 17:11:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274632#M25343</guid>
      <dc:creator>DavidChrest</dc:creator>
      <dc:date>2016-05-11T17:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using shp-write to export as shapefile</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274633#M25344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this is a bit over my head. I, like Michael, would love to have something that Advanced Draw tool with a "Save to shapefile" button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2016 17:13:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/using-shp-write-to-export-as-shapefile/m-p/274633#M25344</guid>
      <dc:creator>DavidChrest</dc:creator>
      <dc:date>2016-05-11T17:13:40Z</dc:date>
    </item>
  </channel>
</rss>

