Struct GpxImport.Result
What one import call did: content added per store plus the segments that were too short to draw.
public readonly struct GpxImport.Result
- Inherited Members
Constructors
Result(int, int, int)
public Result(int markersAdded, int polylinesAdded, int segmentsSkipped)
Parameters
Properties
MarkersAdded
Markers added, one per waypoint.
public int MarkersAdded { get; }
Property Value
PolylinesAdded
Polylines added, one per track segment of 2+ points.
public int PolylinesAdded { get; }
Property Value
SegmentsSkipped
Track segments skipped for having fewer than 2 points.
public int SegmentsSkipped { get; }