Hi,
I have a drawing tool and a buffer tool.
both add graphics to map. using:
var drawing = new Graphic()
map.graphics.add(drawing );
var buffer = new Graphic()
map.graphics.add(buffer );
is there any way to clean them separately
one for only drawings, another for buffers.
Solved! Go to Solution.
Hi,
Maybe you could create two seperate graphicslayer for each one, then add/clear graphics for each graphicslayer?
Chen
Hi,
Maybe you could create two seperate graphicslayer for each one, then add/clear graphics for each graphicslayer?
Chen
Thanks chen, i think i know what im gonna do now.