mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-17 00:14:48 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
24 lines
501 B
Objective-C
24 lines
501 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSUInteger, DeeplinkUrlType) {
|
|
DeeplinkUrlTypeIncorrect = 0,
|
|
DeeplinkUrlTypeMap,
|
|
DeeplinkUrlTypeRoute,
|
|
DeeplinkUrlTypeSearch,
|
|
DeeplinkUrlTypeCrosshair,
|
|
DeeplinkUrlTypeOAuth2,
|
|
DeeplinkUrlTypeMenu,
|
|
DeeplinkUrlTypeSettings
|
|
};
|
|
|
|
@interface DeepLinkParser : NSObject
|
|
|
|
+ (DeeplinkUrlType)parseAndSetApiURL:(NSURL *)url;
|
|
+ (void)executeMapApiRequest;
|
|
+ (void)addBookmarksFile:(NSURL*)url;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|