Changeset 35214 in osm
- Timestamp:
- 2019-11-02T15:33:57+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
r34753 r35214 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="1 4456"/>7 <property name="plugin.main.version" value="15496"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/gpsblam/src/org/openstreetmap/josm/plugins/gpsblam/GPSBlamInputData.java
r34753 r35214 11 11 import org.openstreetmap.josm.data.coor.CachedLatLon; 12 12 import org.openstreetmap.josm.data.gpx.GpxTrack; 13 import org.openstreetmap.josm.data.gpx.GpxTrackSegment; 13 import org.openstreetmap.josm.data.gpx.IGpxTrackSegment; 14 14 import org.openstreetmap.josm.data.gpx.WayPoint; 15 15 import org.openstreetmap.josm.data.projection.Projection; … … 34 34 if (l.isVisible() && l instanceof GpxLayer) { 35 35 for (GpxTrack track : ((GpxLayer) l).data.tracks) { 36 for (GpxTrackSegment segment: track.getSegments()) { 36 for (IGpxTrackSegment segment: track.getSegments()) { 37 37 for (WayPoint wayPoint : segment.getWayPoints()) { 38 38 if (p2.equals(p1)) {
Note:
See TracChangeset
for help on using the changeset viewer.