Table of Contents

Struct GpxImport.Result

Namespace
LansMap.Core.Import

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

markersAdded int
polylinesAdded int
segmentsSkipped int

Properties

MarkersAdded

Markers added, one per waypoint.

public int MarkersAdded { get; }

Property Value

int

PolylinesAdded

Polylines added, one per track segment of 2+ points.

public int PolylinesAdded { get; }

Property Value

int

SegmentsSkipped

Track segments skipped for having fewer than 2 points.

public int SegmentsSkipped { get; }

Property Value

int