Hy,I'm trying to encode a graphic object into a json string.I got translated the geometry but the symbology is ignored.
var myGraphimyGraphic.geometry = new MapPoint(70000,71000);
myGraphic.symbol = new SimpleMarkerSymbol("cross");
var jsonStr = JSON.encode(myGraphic);
trace(jsonStr);
The jsonStr variable has the value: {"geometry":{"x":70000,"y":71000}}Why is the symbology ignored in the JSON.encode method?Thanks, Tom