MBNNMatchedPolylineLocation.h 940 B

1234567891011121314151617181920212223242526272829
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBXGeometry;
  4. @class MBNNGraphPath;
  5. @class MBNNMatchedPolylinePart;
  6. NS_SWIFT_NAME(MatchedPolylineLocation)
  7. __attribute__((visibility ("default")))
  8. @interface MBNNMatchedPolylineLocation : NSObject
  9. // This class provides custom init which should be called
  10. - (nonnull instancetype)init NS_UNAVAILABLE;
  11. // This class provides custom init which should be called
  12. + (nonnull instancetype)new NS_UNAVAILABLE;
  13. /** Position of a polyline on a road graph */
  14. - (nonnull MBNNGraphPath *)getPath __attribute((ns_returns_retained));
  15. /** Shape of a polyline */
  16. - (nonnull MBXGeometry *)getShape __attribute((ns_returns_retained));
  17. /**
  18. * Exists if the polyline is being matched partially. Contains information
  19. * about the already matched part.
  20. */
  21. - (nullable MBNNMatchedPolylinePart *)getMatchedPart __attribute((ns_returns_retained));
  22. @end