Hello all,I am using ArcGIS JavaScript API version 3.9I am having an issue where the MEasurement tool displays only one segment of the drawn polygon at a time while measuring areas. Is this a bug? Is there any way of fixing it?My code is below:JS Code: var measurement = new Measurement({
map: map,
defaultAreaUnit: esri.Units.ACRES,
defaultLengthUnit: esri.Units.FEET
}, dom.byId("measurementDiv"));
measurement.startup();
HTML Code:
<!-- Measure tool -->
<div style="position:absolute; left:45px; top:50px; z-Index:998;width: 230px">
<div id="titlePane" data-dojo-type="dijit.TitlePane" data-dojo-props="title:'Measurement', closable:false, open:false">
<div id="measurementDiv"></div>
<span style="font-size:smaller;padding:5px 5px;">Press <b>CTRL</b> to enable snapping.</span>
</div>
</div>