Hello every superiors:
Now I have a question to consult.
code A :
var measureLengthToolbar = new esri.toolbars.Draw(map);
measureLengthToolbar.activate(esri.toolbars.Draw.POLYLINE);
I know the end of the event is
code B:
dojo.connect(measureLengthToolbar, "onDrawEnd", function(geometry) {
.....
}
this is the double click event .
when I draw the line of center ,I need single click, because I need to deal songthing when single click ,how can I draw the code like code B,thanks very much.