I tested my 1st JS API application. My code is below: var polylineJson = { 'paths': [ [ [201394.01178484457,173661.08635829584], [201392.0117168416,173661.08690949593], ... ] ] }; var polyline = new esri.geometry.Polyline(polylineJson); var polylineSymbol = new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([46, 139, 87, 1]), 5); map.graphics.add(new esri.Graphic(polyline, polylineSymbol)); But the polyline is not added on the map. What's wrong in the code? Thanks if you can help.