Greetings all, For some reason I'm having a bit of difficulty getting my zoom to feature layer work. The following clears the previously selected route (mySelectedRouteLayer) then utilizing the route they selected returns the "ROUTE" number I use to create a SELECTION_NEW from the Feature Layer and display that layer. It will clear the feature layer when they select the next one my problem is that I can't seem to figure out how to zoom to this particularly selected feature.I was using the myMap.zoomTo(graphic.geometry); but since I no longer use the Graphic Layer I'm not sure how to get the geometry out of my FeatureLayer to zoomTo it. Your input is greatly appreciated. Thank you in advance.mySelectedRouteLayer.clear(); var graphic:Graphic; graphic = List(event.currentTarget).selectedItem as Graphic; var selectedRoute:int = graphic.attributes["ROUTE"]; query_Selection.where = "ROUTE = " + selectedRoute + ""; mySelectedRouteLayer.selectFeatures(query_Selection, FeatureLayer.SELECTION_NEW); mySelectedRouteLayer.selectionColor = NaN; // Zoomto the Extent of mySelectedRouteLayer