Hi,
I'm building a very custom application with 4.x and I'm struggling with duplicating functionality that I have in my current 3.x application.
Here's what I want to be able to do:
- Select a feature
- Enable "move mode" where I can move just that one feature
- Save changes
Watch this short screencast to see what I mean.
In 3.x that was super easy to do using the edit toolbar, like this:
editToolbar = new Edit(map);
//Once the feature is selected
editToolbar.activate(Edit.MOVE | Edit.SCALE | Edit.EDIT_VERTICES, feature);
How can I do the same thing in 4.x?
Thanks!
Matt