PathFileFormat

Objective-C

enum PathFileFormat : NSInteger {}

Swift

enum PathFileFormat : Int, @unchecked Sendable

Constants indicating the path import supported formats.

  • GPX

    Declaration

    Objective-C

    PathFileFormatGpx = 0

    Swift

    case gpx = 0
  • KML

    Declaration

    Objective-C

    PathFileFormatKml

    Swift

    case kml = 1
  • NMEA

    Declaration

    Objective-C

    PathFileFormatNmea

    Swift

    case nmea = 2
  • GeoJson

    Declaration

    Objective-C

    PathFileFormatGeoJson

    Swift

    case geoJson = 3
  • Latitude, Longitude lines in txt file ( debug purposes )

    Declaration

    Objective-C

    PathFileFormatLatLonTxt

    Swift

    case latLonTxt = 4
  • Longitude Latitude lines in txt file ( debug purposes )

    Declaration

    Objective-C

    PathFileFormatLonLatTxt

    Swift

    case lonLatTxt = 5
  • Packed geometry

    Declaration

    Objective-C

    PathFileFormatPackedGeometry

    Swift

    case packedGeometry = 6