Hi, I'm going crazy here. When I add a map as a FeatureLayer, the lines are rendered on top of each other (incorrect), however when added as a DynamicLayer, it's displayed just how it's displayed in ArcMap (correct).Here's my simple simple code:
var myURL = "http://..."
var fl = new esri.layers.FeatureLayer(myURL+ /layerIndex)
var dl = new esri.layers.ArcGISDynamicMapServiceLayer(myURL)
map.addLayer(fl)
map.addLayer(dl)
Please look at my attachments to get a better idea. You can ignore the red lines on dynamicLayer.png. What's important are the black lines. Thanks, Aaron