<?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: Measure distances sample - written in AMD in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429370#M39447</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also use this line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL class="dp-j" start="1" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; list-style-position: initial; list-style-image: initial; color: #5c5c5c; margin: 0 0 1px 45px !important;"&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; map.on(&lt;SPAN class="string" style="font-weight: inherit; font-style: inherit; color: blue; font-size: 9pt !important; background-color: inherit;"&gt;"mouse-over"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;, windowPop);&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the function will run whenever your mouse is going over your map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if that fixes it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2014 18:19:33 GMT</pubDate>
    <dc:creator>TimWitt2</dc:creator>
    <dc:date>2014-11-07T18:19:33Z</dc:date>
    <item>
      <title>Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429365#M39442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to do a very basic distance measure, but I also need identify in my project.&amp;nbsp; I'm not seeing/understanding whether or not I can manage the listeners for that dijit in order to pause and remove my identify task as needed.&amp;nbsp; I thought about using the Measure Distances example &lt;A href="https://developers.arcgis.com/javascript/jssamples/util_measureline.html" title="https://developers.arcgis.com/javascript/jssamples/util_measureline.html"&gt;Measure distances | ArcGIS API for JavaScript&lt;/A&gt; which uses the GeometryService to get the length.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That example is written in legacy.&amp;nbsp; When I tried to rewrite it in AMD, I'm getting an error, "Cannot read property 'setImmediateClick' of undefined"&amp;nbsp; That seems like I'm trying to use something before it's initialized or loaded, but I'm not sure what.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe someone can figure out what I did wrong.&amp;nbsp; I haven't used the LengthsParameters before in GeometryService and I haven't used the Draw toolbar much either.&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/xksqx3an/"&gt;http://jsfiddle.net/xksqx3an/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 15:23:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429365#M39442</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2014-11-07T15:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429366#M39443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could create a measurement checkbox and while the measurement checkbox is checked your identify task won't run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the first couple of lines in my app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/timw1984/LPb4K/" title="http://jsfiddle.net/timw1984/LPb4K/"&gt;Full Mapping Application - JSFiddle&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14153749569502644" jivemacro_uid="_14153749569502644"&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Identify Task&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; on(registry.byId("identifyDiv"),"click", activateIdentify);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function activateIdentify(evt){&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (dijit.byId('identifyDiv').checked) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; identifyListener = map.on("click", executeIdentifyTask);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; identifyListener.remove();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;Hope this helps!&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, 07 Nov 2014 15:42:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429366#M39443</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-11-07T15:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429367#M39444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That could work.&amp;nbsp; I was hoping to be able to suspend the identify just by clicking on one of the tools in the measurement dijit and having it resume once the measurement was complete.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried originally listening for the measure-start and measure-end events to pause my identify, but it was firing anyway. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 16:21:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429367#M39444</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2014-11-07T16:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429368#M39445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;look at my last post here: &lt;A _jive_internal="true" href="https://community.esri.com/message/421034#421034" title="https://community.esri.com/message/421034#421034"&gt;https://community.esri.com/message/421034#421034&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check if a part of the measurement widget is active:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL class="dp-j" start="1" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; list-style-position: initial; list-style-image: initial; color: #5c5c5c; margin: 0 0 1px 45px !important;"&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; function windowPop(){&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; &lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt; (measurement.area.checked || measurement.distance.checked || measurement.location.checked){&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; map.setInfoWindowOnClick(&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;false&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;);&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; } &lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;else&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt; {&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; map.setInfoWindowOnClick(&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;true&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;);&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; }&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; }&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; measurement.on(&lt;SPAN class="string" style="font-weight: inherit; font-style: inherit; color: blue; font-size: 9pt !important; background-color: inherit;"&gt;"measure-end"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;, function (){&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; map.setInfoWindowOnClick(&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;true&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;);&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; });&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&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, 07 Nov 2014 16:24:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429368#M39445</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-11-07T16:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429369#M39446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That seems to work OK for the first time I measure.&amp;nbsp; When I measure a 2nd time, it's still doing the identify, even though I think I have it turned off. I have my identifyHandler defined as pausable, so I don't have keep destroying it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var identifyHandler = on.pausable(map, 'click', runIdentifies);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added lines to suspend my identify, but that didn't make a difference.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; function windowPop(){&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (measurement.area.checked || measurement.distance.checked || measurement.location.checked){&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("measurement checked");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.setInfoWindowOnClick(false);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; identifyHandler.pause();&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("measurement not checked");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.setInfoWindowOnClick(true);&amp;nbsp; &lt;/P&gt;&lt;P&gt; identifyHandler.resume();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 16:52:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429369#M39446</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2014-11-07T16:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429370#M39447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also use this line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL class="dp-j" start="1" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; list-style-position: initial; list-style-image: initial; color: #5c5c5c; margin: 0 0 1px 45px !important;"&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp; map.on(&lt;SPAN class="string" style="font-weight: inherit; font-style: inherit; color: blue; font-size: 9pt !important; background-color: inherit;"&gt;"mouse-over"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;, windowPop);&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the function will run whenever your mouse is going over your map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if that fixes it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 18:19:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429370#M39447</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-11-07T18:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429371#M39448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I should have mentioned.&amp;nbsp; I have that line in there too.&amp;nbsp; I'm not quite sure why it works OK the 1st time, but doesn't the rest of the time.&amp;nbsp; I would assume that something like &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;measurement.distance.checked would be more the current state of the tool and not an event like 'click' on the tool itself.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:10:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429371#M39448</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2014-11-07T19:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429372#M39449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think instead of pause you need to remove it and then add it again after else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:15:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429372#M39449</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-11-07T19:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429373#M39450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've used pausable for dojo/on in several other projects for just such a situation.&amp;nbsp; I ended up adding a Boolean 'identifyEnabled' and setting it to true/false in your windowPop function.&amp;nbsp; Then I changed my runIdentifies to only execute when identifyEnabled is true.&amp;nbsp; That seems to have taken care of my problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:40:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429373#M39450</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2014-11-07T19:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Measure distances sample - written in AMD</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429374#M39451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, glad you got it working!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:58:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/measure-distances-sample-written-in-amd/m-p/429374#M39451</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2014-11-07T19:58:08Z</dc:date>
    </item>
  </channel>
</rss>

