Changeset 35221 in osm for applications/editors/josm/plugins/gpsblam
- Timestamp:
- 2019-11-03T22:22:25+01:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/gpsblam
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/gpsblam/build.xml
r35214 r35221 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="15 496"/>7 <property name="plugin.main.version" value="15502"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/gpsblam/src/org/openstreetmap/josm/plugins/gpsblam/GPSBlamInputData.java
r35214 r35221 10 10 11 11 import org.openstreetmap.josm.data.coor.CachedLatLon; 12 import org.openstreetmap.josm.data.gpx.GpxTrack; 12 import org.openstreetmap.josm.data.gpx.IGpxTrack; 13 13 import org.openstreetmap.josm.data.gpx.IGpxTrackSegment; 14 14 import org.openstreetmap.josm.data.gpx.WayPoint; … … 33 33 for (Layer l : layers) { 34 34 if (l.isVisible() && l instanceof GpxLayer) { 35 for (GpxTrack track : ((GpxLayer) l).data.tracks) { 35 for (IGpxTrack track : ((GpxLayer) l).data.tracks) { 36 36 for (IGpxTrackSegment segment: track.getSegments()) { 37 37 for (WayPoint wayPoint : segment.getWayPoints()) {
Note:
See TracChangeset
for help on using the changeset viewer.