I have json data and I want to use the radius of a circle to display a quantitative/proportional value.
What I am seeing is that even though every circle I am displaying has the 'same' radius, the size of the circle changes depending on where the circle appears on the map. Is there a different type of 'radius unit' or a property other than 'geodesic' I can use to keep my circles consistent no matter where they appear on the map?
Thanks for your help, ~AJ
var circle = new Circle(point, {
radius: 500,
radiusUnit: esri.Units.MILES,
geodesic: true
});