I'm using the Geometry Service to create Buffers:gmtrySrvcBuffers = new GeometryService("http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"); gmtrySrvcBuffers.BufferCompleted += gmtrySrvcBuffers_BufferCompleted; BufferParameters bufferParams = new BufferParameters() { BufferSpatialReference = Variables.Mapa.SpatialReference, OutSpatialReference = Variables.Mapa.SpatialReference, Unit = LinearUnit.Meter };Note that the spatial references are defined from the base Map.And the MeasureAction to display the radio of a circle:<esri:MeasureAction AreaUnit="SquareMeters" DisplayTotals="True" DistanceUnit="Meters" MapUnits="Meters" MeasureMode="Radius" FillSymbol="{StaticResource DefaultFillSymbol}" TargetName="MyMap" />in both cases the units are Meters.Once buffer created (with a value of 1000, from a text of a TextBox converted to Double, for the radio), I use the MeasureAction and the result is:[ATTACH=CONFIG]23608[/ATTACH]What I'm doing wrong? why the measures aren't equals?'