I'm profiling my project and I have 400 instances of SpatialReference taking up 6% of my project's memory.Is there any reason why each map point has to have it's own SpatialReference?Can I create a global SpatialReference variable and define each mappoint to use it? ex: var myGraphicPic:Graphic = new Graphic(new MapPoint(-411000, 4924000, new SpatialReference(102100)));
myGraphicPic.symbol = pictureMarker;
myGraphicsLayer.add(myGraphicPic);
var myGraphicPic2:Graphic = new Graphic(new MapPoint(-531000, 5024000, new SpatialReference(102100)));
myGraphicPic2.symbol = pictureMarker;
myGraphicsLayer.add(myGraphicPic2);
Is there anything happening inside SpatialReference ? Is it basically a read-only object?thanks,