removeMark.js 349 B

123456789101112131415161718
  1. /**
  2. * 清除标注
  3. */
  4. function removeMark() {
  5. // 清除图片加文本标注
  6. $('.textAndPictureMarker').remove();
  7. var marker = app.query(/marker/);
  8. if (marker) {
  9. marker.destroy();
  10. }
  11. marker01 = null;
  12. marker02 = null;
  13. // 移除box
  14. var box = app.query('.Box');
  15. if (box) {
  16. box.destroy();
  17. }
  18. }