<?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: AreaMeasurement2D crash in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347758#M32136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tested the provided code with Chrome, Edge, and IE11, and could not see an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin, could you provide some information as to your OS version and browser version? Also, can you run the sample hosted on the developer's site?&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-measurement-2d/index.html"&gt;https://developers.arcgis.com/javascript/latest/sample-code/widgets-measurement-2d/index.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Apr 2019 21:08:51 GMT</pubDate>
    <dc:creator>Noah-Sager</dc:creator>
    <dc:date>2019-04-12T21:08:51Z</dc:date>
    <item>
      <title>AreaMeasurement2D crash</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347756#M32134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't seem to get the AreaMeasurement2D not to crash. Try the following code and you'll get a error in the geometry engine when you try the area measurement tool. Any idea what is going on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;meta charset="utf-8" /&amp;gt;&lt;BR /&gt; &amp;lt;meta name="viewport"&lt;BR /&gt; content="initial-scale=1,maximum-scale=1,user-scalable=no" /&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;MapImageLayer - create dynamic map layers - 4.11&amp;lt;/title&amp;gt;&lt;BR /&gt; &amp;lt;link rel="stylesheet"&lt;BR /&gt; href="https://js.arcgis.com/4.11/esri/themes/light/main.css" /&amp;gt;&lt;BR /&gt; &amp;lt;script src="https://js.arcgis.com/4.11/"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt; &amp;lt;style&amp;gt;&lt;BR /&gt; html,&lt;BR /&gt; body,&lt;BR /&gt; #viewDiv {&lt;BR /&gt; padding: 0;&lt;BR /&gt; margin: 0;&lt;BR /&gt; height: 100%;&lt;BR /&gt; width: 100%;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;#info-div {&lt;BR /&gt; background-color: white;&lt;BR /&gt; border-radius: 8px;&lt;BR /&gt; padding: 8px;&lt;BR /&gt; opacity: 0.92;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;#topbar {&lt;BR /&gt; background: #fff;&lt;BR /&gt; padding: 10px;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;.action-button {&lt;BR /&gt; font-size: 16px;&lt;BR /&gt; background-color: transparent;&lt;BR /&gt; border: 1px solid #d3d3d3;&lt;BR /&gt; color: #6e6e6e;&lt;BR /&gt; height: 32px;&lt;BR /&gt; width: 32px;&lt;BR /&gt; text-align: center;&lt;BR /&gt; box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;.action-button:hover,&lt;BR /&gt; .action-button:focus {&lt;BR /&gt; background: #0079c1;&lt;BR /&gt; color: #e4e4e4;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;.active {&lt;BR /&gt; background: #0079c1;&lt;BR /&gt; color: #e4e4e4;&lt;BR /&gt; }&lt;BR /&gt; &amp;lt;/style&amp;gt;&lt;BR /&gt; &amp;lt;script&amp;gt;&lt;BR /&gt; require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; "esri/layers/MapImageLayer",&lt;BR /&gt; "esri/widgets/Legend",&lt;BR /&gt; "esri/widgets/DistanceMeasurement2D",&lt;BR /&gt; "esri/widgets/AreaMeasurement2D",&lt;BR /&gt; ], function (Map, MapView, MapImageLayer, Legend, DistanceMeasurement2D, AreaMeasurement2D) {&lt;/P&gt;&lt;P&gt;var activeWidget;&lt;BR /&gt; // helper function to create a symbol&lt;BR /&gt; function createSymbol(color) {&lt;BR /&gt; return {&lt;BR /&gt; type: "simple-fill", // autocasts as new SimpleFillSymbol()&lt;BR /&gt; color: color,&lt;BR /&gt; outline: {&lt;BR /&gt; width: 0.5,&lt;BR /&gt; color: [255, 255, 255, 0.4]&lt;BR /&gt; },&lt;BR /&gt; style: "solid"&lt;BR /&gt; };&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/*****************************************************************&lt;BR /&gt; * Create renderers for each block groups sublayer&lt;BR /&gt; *****************************************************************/&lt;/P&gt;&lt;P&gt;var populationRenderer = {&lt;BR /&gt; type: "class-breaks", // autocasts as new ClassBreaksRenderer()&lt;BR /&gt; field: "POP07_SQMI",&lt;BR /&gt; defaultSymbol: {&lt;BR /&gt; type: "simple-fill", // autocasts as new SimpleFillSymbol()&lt;BR /&gt; style: "backward-diagonal",&lt;BR /&gt; outline: {&lt;BR /&gt; width: 0.5,&lt;BR /&gt; color: "gray"&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; classBreakInfos: [&lt;BR /&gt; {&lt;BR /&gt; minValue: 0,&lt;BR /&gt; maxValue: 5100,&lt;BR /&gt; label: "&amp;lt;5,100",&lt;BR /&gt; symbol: createSymbol("#e6eecf")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 5100,&lt;BR /&gt; maxValue: 16200,&lt;BR /&gt; label: "5,100 - 16,200",&lt;BR /&gt; symbol: createSymbol("#9bc4c1")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 16200,&lt;BR /&gt; maxValue: 42200,&lt;BR /&gt; label: "16,200 - 42,200",&lt;BR /&gt; symbol: createSymbol("#69a8b7")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 42000,&lt;BR /&gt; maxValue: 1000000,&lt;BR /&gt; label: "&amp;gt;42,200",&lt;BR /&gt; symbol: createSymbol("#3d6a89")&lt;BR /&gt; }&lt;BR /&gt; ]&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var renterUnitsRenderer = {&lt;BR /&gt; type: "class-breaks", // autocasts as new ClassBreaksRenderer()&lt;BR /&gt; field: "RENTER_OCC",&lt;BR /&gt; normalizationField: "HSE_UNITS",&lt;BR /&gt; normalizationType: "field",&lt;BR /&gt; defaultSymbol: {&lt;BR /&gt; type: "simple-fill", // autocasts as new SimpleFillSymbol()&lt;BR /&gt; style: "backward-diagonal",&lt;BR /&gt; outline: {&lt;BR /&gt; width: 0.5,&lt;BR /&gt; color: "gray"&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; classBreakInfos: [&lt;BR /&gt; {&lt;BR /&gt; minValue: 0,&lt;BR /&gt; maxValue: 0.25,&lt;BR /&gt; label: "&amp;lt; 25%",&lt;BR /&gt; symbol: createSymbol("#f8e3c2")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 0.25,&lt;BR /&gt; maxValue: 0.5,&lt;BR /&gt; label: "25% - 50%",&lt;BR /&gt; symbol: createSymbol("#e5998c")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 0.5,&lt;BR /&gt; maxValue: 0.75,&lt;BR /&gt; label: "50% - 75%",&lt;BR /&gt; symbol: createSymbol("#d86868")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 0.75,&lt;BR /&gt; maxValue: 1.0,&lt;BR /&gt; label: "&amp;gt; 75%",&lt;BR /&gt; symbol: createSymbol("#9b3557")&lt;BR /&gt; }&lt;BR /&gt; ]&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;var ageRenderer = {&lt;BR /&gt; type: "class-breaks", // autocasts as new ClassBreaksRenderer()&lt;BR /&gt; field: "MED_AGE",&lt;BR /&gt; defaultSymbol: {&lt;BR /&gt; type: "simple-fill", // autocasts as new SimpleFillSymbol()&lt;BR /&gt; style: "backward-diagonal",&lt;BR /&gt; outline: {&lt;BR /&gt; width: 0.5,&lt;BR /&gt; color: "gray"&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; classBreakInfos: [&lt;BR /&gt; {&lt;BR /&gt; minValue: 0,&lt;BR /&gt; maxValue: 30,&lt;BR /&gt; label: "&amp;lt; 30",&lt;BR /&gt; symbol: createSymbol("#f6e5cf")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 30,&lt;BR /&gt; maxValue: 36,&lt;BR /&gt; label: "30 - 36",&lt;BR /&gt; symbol: createSymbol("#dd9fbf")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 36,&lt;BR /&gt; maxValue: 42,&lt;BR /&gt; label: "36 - 42",&lt;BR /&gt; symbol: createSymbol("#cc71b4")&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; minValue: 42,&lt;BR /&gt; maxValue: 100,&lt;BR /&gt; label: "&amp;gt; 42",&lt;BR /&gt; symbol: createSymbol("#8c3c88")&lt;BR /&gt; }&lt;BR /&gt; ]&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;/*****************************************************************&lt;BR /&gt; * Create a MapImageLayer instance with three sublayers pointing&lt;BR /&gt; * to a single map service layer. Each layer uses the same data&lt;BR /&gt; * but dynamically renders the data differently for each layer.&lt;BR /&gt; *****************************************************************/&lt;/P&gt;&lt;P&gt;var layer = new MapImageLayer({&lt;BR /&gt; url:&lt;BR /&gt; "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Census/MapServer",&lt;BR /&gt; title: "Census Demographics",&lt;BR /&gt; sublayers: [&lt;BR /&gt; {&lt;BR /&gt; id: 0,&lt;BR /&gt; title: "Population/square mile",&lt;BR /&gt; renderer: populationRenderer,&lt;BR /&gt; visible: false,&lt;BR /&gt; labelingInfo: [&lt;BR /&gt; {&lt;BR /&gt; labelExpression: "[POP2007]",&lt;BR /&gt; labelPlacement: "always-horizontal",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "text", // autocasts as new TextSymbol()&lt;BR /&gt; color: "white",&lt;BR /&gt; haloColor: "#3d6a89",&lt;BR /&gt; haloSize: 1,&lt;BR /&gt; font: {&lt;BR /&gt; size: 10&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; minScale: 37000&lt;BR /&gt; }&lt;BR /&gt; ],&lt;BR /&gt; // points to the block groups layer&lt;BR /&gt; source: {&lt;BR /&gt; mapLayerId: 1&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; id: 1,&lt;BR /&gt; title: "% Renter Occupied Housing Units",&lt;BR /&gt; renderer: renterUnitsRenderer,&lt;BR /&gt; definitionExpression: "POP07_SQMI &amp;gt;= 5100",&lt;BR /&gt; visible: true,&lt;BR /&gt; labelingInfo: [&lt;BR /&gt; {&lt;BR /&gt; labelExpression: "[RENTER_OCC]",&lt;BR /&gt; labelPlacement: "always-horizontal",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "text", // autocasts as new TextSymbol()&lt;BR /&gt; color: "white",&lt;BR /&gt; haloColor: "#9b3557",&lt;BR /&gt; haloSize: 1,&lt;BR /&gt; font: {&lt;BR /&gt; size: 10&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; minScale: 37000&lt;BR /&gt; }&lt;BR /&gt; ],&lt;BR /&gt; // points to the block groups layer&lt;BR /&gt; source: {&lt;BR /&gt; mapLayerId: 1&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; id: 2,&lt;BR /&gt; title: "Median Age",&lt;BR /&gt; renderer: ageRenderer,&lt;BR /&gt; definitionExpression: "POP07_SQMI &amp;gt;= 5100",&lt;BR /&gt; visible: false,&lt;BR /&gt; labelingInfo: [&lt;BR /&gt; {&lt;BR /&gt; labelExpression: "[MED_AGE]",&lt;BR /&gt; labelPlacement: "always-horizontal",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "text", // autocasts as new TextSymbol()&lt;BR /&gt; color: "white",&lt;BR /&gt; haloColor: "#8c3c88",&lt;BR /&gt; haloSize: 1,&lt;BR /&gt; font: {&lt;BR /&gt; size: 10&lt;BR /&gt; }&lt;BR /&gt; },&lt;BR /&gt; minScale: 37000&lt;BR /&gt; }&lt;BR /&gt; ],&lt;BR /&gt; // points to the block groups layer&lt;BR /&gt; source: {&lt;BR /&gt; mapLayerId: 1&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; ]&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;/*****************************************************************&lt;BR /&gt; * Add the layer to a map&lt;BR /&gt; *****************************************************************/&lt;/P&gt;&lt;P&gt;var map = new Map({&lt;BR /&gt; basemap: "gray",&lt;BR /&gt; layers: [layer]&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var view = new MapView({&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; map: map,&lt;BR /&gt; zoom: 13,&lt;BR /&gt; center: [-80.57, 33.78]&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var legend = new Legend({&lt;BR /&gt; view: view&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;view.ui.add(legend, "bottom-left");&lt;BR /&gt; view.ui.add("info-div", "top-right");&lt;/P&gt;&lt;P&gt;view.when(function () {&lt;BR /&gt; // set sublayer visibility depending on the selected layer&lt;BR /&gt; document&lt;BR /&gt; .getElementById("layer-select")&lt;BR /&gt; .addEventListener("change", function (event) {&lt;BR /&gt; var newValue = parseInt(event.target.value);&lt;BR /&gt; layer.sublayers.forEach(function (sublayer) {&lt;BR /&gt; sublayer.visible = newValue === sublayer.id;&lt;BR /&gt; });&lt;BR /&gt; });&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;view.ui.add("topbar", "top-right");&lt;/P&gt;&lt;P&gt;document&lt;BR /&gt; .getElementById("distanceButton")&lt;BR /&gt; .addEventListener("click", function () {&lt;BR /&gt; setActiveWidget(null);&lt;BR /&gt; if (!this.classList.contains("active")) {&lt;BR /&gt; setActiveWidget("distance");&lt;BR /&gt; } else {&lt;BR /&gt; setActiveButton(null);&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;document&lt;BR /&gt; .getElementById("areaButton")&lt;BR /&gt; .addEventListener("click", function () {&lt;BR /&gt; setActiveWidget(null);&lt;BR /&gt; if (!this.classList.contains("active")) {&lt;BR /&gt; setActiveWidget("area");&lt;BR /&gt; } else {&lt;BR /&gt; setActiveButton(null);&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;function setActiveWidget(type) {&lt;BR /&gt; switch (type) {&lt;BR /&gt; case "distance":&lt;BR /&gt; activeWidget = new DistanceMeasurement2D({&lt;BR /&gt; view: view&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// skip the initial 'new measurement' button&lt;BR /&gt; activeWidget.viewModel.newMeasurement();&lt;/P&gt;&lt;P&gt;view.ui.add(activeWidget, "top-right");&lt;BR /&gt; setActiveButton(document.getElementById("distanceButton"));&lt;BR /&gt; break;&lt;BR /&gt; case "area":&lt;BR /&gt; activeWidget = new AreaMeasurement2D({&lt;BR /&gt; view: view&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// skip the initial 'new measurement' button&lt;BR /&gt; activeWidget.viewModel.newMeasurement();&lt;/P&gt;&lt;P&gt;view.ui.add(activeWidget, "top-right");&lt;BR /&gt; setActiveButton(document.getElementById("areaButton"));&lt;BR /&gt; break;&lt;BR /&gt; case null:&lt;BR /&gt; if (activeWidget) {&lt;BR /&gt; view.ui.remove(activeWidget);&lt;BR /&gt; activeWidget.destroy();&lt;BR /&gt; activeWidget = null;&lt;BR /&gt; }&lt;BR /&gt; break;&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;function setActiveButton(selectedButton) {&lt;BR /&gt; // focus the view to activate keyboard shortcuts for sketching&lt;BR /&gt; view.focus();&lt;BR /&gt; var elements = document.getElementsByClassName("active");&lt;BR /&gt; for (var i = 0; i &amp;lt; elements.length; i++) {&lt;BR /&gt; elements&lt;I&gt;.classList.remove("active");&lt;BR /&gt; }&lt;BR /&gt; if (selectedButton) {&lt;BR /&gt; selectedButton.classList.add("active");&lt;BR /&gt; }&lt;BR /&gt; }&lt;/I&gt;&lt;/P&gt;&lt;P&gt;});&lt;BR /&gt; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div id="topbar"&amp;gt;&lt;BR /&gt; &amp;lt;button class="action-button esri-icon-minus"&lt;BR /&gt; id="distanceButton"&lt;BR /&gt; type="button"&lt;BR /&gt; title="Measure distance between two or more points"&amp;gt;&amp;lt;/button&amp;gt;&lt;BR /&gt; &amp;lt;button class="action-button esri-icon-polygon"&lt;BR /&gt; id="areaButton"&lt;BR /&gt; type="button"&lt;BR /&gt; title="Measure area"&amp;gt;&amp;lt;/button&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt; &amp;lt;div id="info-div"&amp;gt;&lt;BR /&gt; Select a demographic variable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;BR /&gt; &amp;lt;select id="layer-select"&amp;gt;&lt;BR /&gt; &amp;lt;option value="0"&amp;gt;Population density&amp;lt;/option&amp;gt;&lt;BR /&gt; &amp;lt;option value="1" selected&amp;gt;Renter occupied units&amp;lt;/option&amp;gt;&lt;BR /&gt; &amp;lt;option value="2"&amp;gt;Median age&amp;lt;/option&amp;gt;&lt;BR /&gt; &amp;lt;/select&amp;gt;&lt;BR /&gt; &amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Apr 2019 18:03:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347756#M32134</guid>
      <dc:creator>KevinMahone</dc:creator>
      <dc:date>2019-04-11T18:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: AreaMeasurement2D crash</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347757#M32135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I do see the error in IE 11 but not in Chrome or Firefox. Looks like something to report to esri tech support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2019 13:34:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347757#M32135</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-04-12T13:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: AreaMeasurement2D crash</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347758#M32136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tested the provided code with Chrome, Edge, and IE11, and could not see an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin, could you provide some information as to your OS version and browser version? Also, can you run the sample hosted on the developer's site?&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-measurement-2d/index.html"&gt;https://developers.arcgis.com/javascript/latest/sample-code/widgets-measurement-2d/index.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2019 21:08:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347758#M32136</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2019-04-12T21:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: AreaMeasurement2D crash</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347759#M32137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IE11 on Windows 7 shows this issue&lt;/P&gt;&lt;P&gt;Version: 11.0.9600.18282&lt;BR /&gt;Update Versions: 11.0.30 (KB3148198)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2019 13:16:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347759#M32137</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2019-04-13T13:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: AreaMeasurement2D crash</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347760#M32138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert. I am using IE on Windows 10 without issue.&lt;/P&gt;&lt;P&gt;Version: 11.648.17134.0&lt;/P&gt;&lt;P&gt;Update Version: 11.0.115&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:49:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347760#M32138</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2019-04-15T15:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: AreaMeasurement2D crash</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347761#M32139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see the problem in IE11 and Chrome on a Windows 7 box. We can replicate it in office on a Windows 10 box as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ESRI sample works fine but this problem arose in my larger application so I put together the sample I sent which is just a mashup of two of ESRI's samples so something is definitely not working as very well here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Apr 2019 14:55:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347761#M32139</guid>
      <dc:creator>KevinMahone</dc:creator>
      <dc:date>2019-04-16T14:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: AreaMeasurement2D crash</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347762#M32140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure Kevin.&amp;nbsp;With Windows 10, I&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;tested the provided code&amp;nbsp;on Chrome, Edge, and IE11, and could not see an error.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Apr 2019 17:07:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/areameasurement2d-crash/m-p/347762#M32140</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2019-04-25T17:07:33Z</dc:date>
    </item>
  </channel>
</rss>

