Changeset 26648 in osm for applications
- Timestamp:
- 2011-09-12T22:08:16+02:00 (13 years ago)
- Location:
- applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/JMapViewer.java
r26253 r26648 671 671 } 672 672 673 public void removeAllMapMarkers() { 674 mapMarkerList.clear(); 675 repaint(); 676 } 677 673 678 public void addMapRectangle(MapRectangle rectangle) { 674 679 mapRectangleList.add(rectangle); … … 678 683 public void removeMapRectangle(MapRectangle rectangle) { 679 684 mapRectangleList.remove(rectangle); 685 repaint(); 686 } 687 688 public void removeAllMapRectangles() { 689 mapRectangleList.clear(); 680 690 repaint(); 681 691 }
Note:
See TracChangeset
for help on using the changeset viewer.