Changeset 32329 in osm for applications/editors/josm/plugins/gpsblam
- Timestamp:
- 2016-06-19T16:08:56+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/gpsblam
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/gpsblam/build.xml
r31926 r32329 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value=" 7001"/>7 <property name="plugin.main.version" value="10279"/> 8 8 9 9 <!-- -
applications/editors/josm/plugins/gpsblam/src/org/openstreetmap/josm/plugins/gpsblam/GPSBlamInputData.java
r30761 r32329 27 27 // within given radius of line between given points 28 28 GPSBlamInputData(Point p1, Point p2, int radius) { 29 Collection<Layer> layers = Main. map.mapView.getAllLayers();29 Collection<Layer> layers = Main.getLayerManager().getLayers(); 30 30 for (Layer l : layers) { 31 31 if (l.isVisible() && l instanceof GpxLayer) {
Note:
See TracChangeset
for help on using the changeset viewer.