aboutsummaryrefslogtreecommitdiff
path: root/iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64_x86_64-simulator/WhirlyGlobeMaplyComponent.framework/Headers/Maply3DTouchPreviewDatasource.h
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2022-01-31 00:52:09 -0600
committerIván Ávalos <avalos@disroot.org>2022-01-31 00:52:09 -0600
commit1b6df3a665605faa4c8b02ec31e7433caad1b0b1 (patch)
tree876b3ab2ab45980480d6e6bf2b5696708b72f25e /iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64_x86_64-simulator/WhirlyGlobeMaplyComponent.framework/Headers/Maply3DTouchPreviewDatasource.h
parentdf95aae61affe160257cd276c5c342a9c18b0d94 (diff)
downloadetbsa-trackermap-mobile-1b6df3a665605faa4c8b02ec31e7433caad1b0b1.tar.gz
etbsa-trackermap-mobile-1b6df3a665605faa4c8b02ec31e7433caad1b0b1.tar.bz2
etbsa-trackermap-mobile-1b6df3a665605faa4c8b02ec31e7433caad1b0b1.zip
Added WhirlyGlobe-Maply .xcframework and implemented map layer switch
Diffstat (limited to 'iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64_x86_64-simulator/WhirlyGlobeMaplyComponent.framework/Headers/Maply3DTouchPreviewDatasource.h')
-rw-r--r--iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64_x86_64-simulator/WhirlyGlobeMaplyComponent.framework/Headers/Maply3DTouchPreviewDatasource.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64_x86_64-simulator/WhirlyGlobeMaplyComponent.framework/Headers/Maply3DTouchPreviewDatasource.h b/iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64_x86_64-simulator/WhirlyGlobeMaplyComponent.framework/Headers/Maply3DTouchPreviewDatasource.h
new file mode 100644
index 0000000..ef42bf5
--- /dev/null
+++ b/iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64_x86_64-simulator/WhirlyGlobeMaplyComponent.framework/Headers/Maply3DTouchPreviewDatasource.h
@@ -0,0 +1,38 @@
+//
+// Maply3DTouchPreviewDatasource.h
+// WhirlyGlobe-MaplyComponent
+//
+// Created by Jesse Crocker on 10/4/15.
+//
+//
+
+@class MaplyBaseViewController;
+
+@protocol Maply3dTouchPreviewDatasource <NSObject>
+
+@required
+/**
+ Asks the data source for a view controller to display as a preview for a selected object
+
+ @param viewC the map requesting the view controller;
+
+ @param selectedObj The object a preview is being requested for.
+
+ @return a UIViewController, or nil if no preview should be displayed.
+ */
+- (UIViewController * _Nullable)maplyViewController:(MaplyBaseViewController * _Nonnull)viewC
+ previewViewControllerForSelection:(NSObject * _Nonnull)selectedObj;
+
+/**
+ Asks the data source to present a preview view controller.
+
+ the most likely implementation of this is [self show:previewViewC sender:self];
+
+ @param viewC the map requesting the view controller;
+
+ @param previewViewC the view controller to present.
+ */
+- (void)maplyViewController:(MaplyBaseViewController * _Nonnull)viewC
+ showPreviewViewController:(UIViewController * _Nonnull)previewViewC;
+
+@end