VMDLocalFile

Objective-C

@interface VMDLocalFile : NSObject <VMDFile>

Swift

class VMDLocalFile : NSObject, VMDFile

Represents a local file that needs to be loaded for map data

  • xml file
  • geojson file
  • json file

Since

1.1

Public Properties

  • The absolute file path

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nonnull absoluteFilePath;

    Swift

    var absoluteFilePath: String { get set }

Initializers

  • Create vmd file from local filepath

    Declaration

    Objective-C

    - (nonnull instancetype)initWithAbsoluteFilePath:
        (nonnull NSString *)absoluteFilePath;

    Swift

    init(absoluteFilePath: String)

    Parameters

    absoluteFilePath

    the filepath

    Return Value

    a vmd file instance