Uses of Class
org.openstreetmap.josm.data.gpx.WayPoint

Packages that use WayPoint
org.openstreetmap.josm.data.gpx   
org.openstreetmap.josm.gui.layer   
org.openstreetmap.josm.gui.layer.geoimage   
org.openstreetmap.josm.gui.layer.markerlayer   
org.openstreetmap.josm.io   
 

Uses of WayPoint in org.openstreetmap.josm.data.gpx
 

Fields in org.openstreetmap.josm.data.gpx with type parameters of type WayPoint
 java.util.Collection<WayPoint> GpxRoute.routePoints
           
 java.util.Collection<WayPoint> GpxData.waypoints
           
private  java.util.Collection<WayPoint> ImmutableGpxTrackSegment.wayPoints
           
 

Methods in org.openstreetmap.josm.data.gpx that return types with arguments of type WayPoint
 java.util.Collection<WayPoint> ImmutableGpxTrackSegment.getWayPoints()
           
 java.util.Collection<WayPoint> GpxTrackSegment.getWayPoints()
           
 

Methods in org.openstreetmap.josm.data.gpx with parameters of type WayPoint
 int WayPoint.compareTo(WayPoint w)
           
 

Constructors in org.openstreetmap.josm.data.gpx with parameters of type WayPoint
WayPoint(WayPoint p)
           
 

Constructor parameters in org.openstreetmap.josm.data.gpx with type arguments of type WayPoint
ImmutableGpxTrack(java.util.Collection<java.util.Collection<WayPoint>> trackSegs, java.util.Map<java.lang.String,java.lang.Object> attributes)
           
ImmutableGpxTrackSegment(java.util.Collection<WayPoint> wayPoints)
           
 

Uses of WayPoint in org.openstreetmap.josm.gui.layer
 

Methods in org.openstreetmap.josm.gui.layer that return WayPoint
 WayPoint GpxLayer.nearestPointOnTrack(EastNorth P, double tolerance)
          Makes a WayPoint at the projection of point P onto the track providing P is less than tolerance away from the track
 

Uses of WayPoint in org.openstreetmap.josm.gui.layer.geoimage
 

Methods in org.openstreetmap.josm.gui.layer.geoimage with parameters of type WayPoint
private  int CorrelateGpxWithImages.matchPoints(java.util.ArrayList<ImageEntry> images, WayPoint prevWp, long prevWpTime, WayPoint curWp, long curWpTime, long offset)
           
 

Uses of WayPoint in org.openstreetmap.josm.gui.layer.markerlayer
 

Methods in org.openstreetmap.josm.gui.layer.markerlayer with parameters of type WayPoint
static Marker Marker.createMarker(WayPoint wpt, java.io.File relativePath, MarkerLayer parentLayer, double time, double offset)
          Returns an object of class Marker or one of its subclasses created from the parameters given.
 Marker MarkerProducers.createMarker(WayPoint wp, java.io.File relativePath, MarkerLayer parentLayer, double time, double offset)
          Returns a Marker object if this implementation wants to create one for the given input data, or null otherwise.
 

Uses of WayPoint in org.openstreetmap.josm.io
 

Fields in org.openstreetmap.josm.io declared as WayPoint
private  WayPoint GpxReader.Parser.currentWayPoint
           
protected  WayPoint NmeaReader.NMEAParserState.p_Wp
           
 

Fields in org.openstreetmap.josm.io with type parameters of type WayPoint
private  java.util.Collection<java.util.Collection<WayPoint>> GpxReader.Parser.currentTrack
           
private  java.util.Collection<WayPoint> GpxReader.Parser.currentTrackSeg
           
protected  java.util.Collection<WayPoint> NmeaReader.NMEAParserState.waypoints
           
 

Methods in org.openstreetmap.josm.io with parameters of type WayPoint
private  void GpxWriter.wayPoint(WayPoint pnt, int mode)
          output a point
 



JOSM