Hello.I have a question. Im trying to get the coords from a Mapservice in Flex through a Query but i dont really know how to put the result from that query into the map to see the Polylines on it.Im getting the selected "equipo" from a row of a datagrid.And the map service will return me this : Polyline:[-7953213.0725, -3900269.6981999986] , [-7953244.836300001, -3900234.4114999995] Im doing this. function onResult(featureSet:FeatureSet, token:Object = null):void { try{ for each (var myGraphic:Graphic in featureSet.features) { //do something with the features returned var mp:MapPoint=featureSet.features[0].geometry as MapPoint; arrPoints.addItem(mp); } var polyLine:Polyline= new Polyline(); polyLine.addPath(arrPoints); //add points to polyline var g:Graphic = new Graphic(polyLine); //create new graphic to add to graphicsLayer //symbol for line graphicsLayer.symbol = new SimpleLineSymbol("solid",0xFF3333,1,3); //add to graphicsLayer graphicsLayer.add(g); }catch(err:Error){ Alert.show("no pasa"); } }I hope somebody can help me 😞Thanks for ur time!