I have an item in a datagrid table and I'm trying to use the itemClick event to zoom-in to each item on the map when clicked on the item. Has anyone worked similar proejct? var myGra:ArrayCollection = myGraphicsLayer.myGra as ArrayCollection;
var myGraExt:Extent = GraphicUtil.getGraphicsExtent(myGra.toArray());
myMap.extent = myGraExt.expand(2.4);
However, this approach from esri samples zooms to all features instead of each individual item.