I don't see any icons on the right of the map, did you mean left?
> then click the done button at the very bottom of the page
> Click done once, error occurs. Click done again, and all is well
I did't see any errors, but I also didn't see anything happen.
What browser are you using (I tried firefox and IE).
I managed to figure out how to get it to do something in firefox, IE
has an error, IE usually has problems with arrays with extraneous
commas at the end like this:
var connectTheDots = [
marker1.getPosition(),
marker2.getPosition(),
marker3.getPosition(), <---------- !!!! bad in IE
];
It adds a "complementary" null object at the end, that causes
problems.
-- Larry