Skip to content

Commit 6779e41

Browse files
Framework commit, version 4.0.0-beta10, see CHANGELOG.md
1 parent 2560b68 commit 6779e41

File tree

54 files changed

+1233
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1233
-219
lines changed

MapsIndoors.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'MapsIndoors'
11-
s.version = '4.0.0-beta9'
11+
s.version = '4.0.0-beta10'
1212
s.summary = 'Library making the MapsIndoors experience available to your iOS users.'
1313
s.description = "The MapsIndoors SDK is the idea of integrating everything at your venue, like people, goods, offices, shops, rooms and buildings with the mapping, positioning and wayfinding technologies provided in the MapsIndoors platform. We make the MapsIndoors platform available to interested businesses and/or partners. So if you think you should be one of them, please call us or send us an email. Meanwhile, you are most welcome to check out the demo project using 'pod try MapsIndoors'."
1414

MapsIndoors.xcframework.zip

4.49 KB
Binary file not shown.

MapsIndoors.xcframework/Info.plist

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>ios-arm64_x86_64-simulator</string>
9+
<string>ios-arm64</string>
1010
<key>LibraryPath</key>
1111
<string>MapsIndoors.framework</string>
1212
<key>SupportedArchitectures</key>
1313
<array>
1414
<string>arm64</string>
15-
<string>x86_64</string>
1615
</array>
1716
<key>SupportedPlatform</key>
1817
<string>ios</string>
19-
<key>SupportedPlatformVariant</key>
20-
<string>simulator</string>
2118
</dict>
2219
<dict>
2320
<key>LibraryIdentifier</key>
24-
<string>ios-arm64</string>
21+
<string>ios-arm64_x86_64-simulator</string>
2522
<key>LibraryPath</key>
2623
<string>MapsIndoors.framework</string>
2724
<key>SupportedArchitectures</key>
2825
<array>
2926
<string>arm64</string>
27+
<string>x86_64</string>
3028
</array>
3129
<key>SupportedPlatform</key>
3230
<string>ios</string>
31+
<key>SupportedPlatformVariant</key>
32+
<string>simulator</string>
3333
</dict>
3434
</array>
3535
<key>CFBundlePackageType</key>

MapsIndoors.xcframework/ios-arm64/MapsIndoors.framework/Headers/MapsIndoors-Swift.h

+12-2
Original file line numberDiff line numberDiff line change
@@ -948,9 +948,13 @@ SWIFT_CLASS("_TtC11MapsIndoors17MPDirectionsQuery")
948948
/// Date for departure. Setting both arrival and departure will result in undefined behavior.
949949
@property (nonatomic, copy) NSDate * _Nullable departure;
950950
/// Destination location.
951-
@property (nonatomic, strong) id <MPLocation> _Nonnull destination;
951+
@property (nonatomic, strong) id <MPLocation> _Nullable destination;
952952
/// Origin location.
953-
@property (nonatomic, strong) id <MPLocation> _Nonnull origin;
953+
@property (nonatomic, strong) id <MPLocation> _Nullable origin;
954+
/// Destination point
955+
@property (nonatomic, strong) MPPoint * _Nullable destinationPoint;
956+
/// Origin point.
957+
@property (nonatomic, strong) MPPoint * _Nullable originPoint;
954958
/// Set travel mode. Default is <code>MPTravelMode/walking</code>.
955959
@property (nonatomic) enum MPTravelMode travelMode;
956960
/// Initialiser that takes locations as origin and destination.
@@ -959,6 +963,12 @@ SWIFT_CLASS("_TtC11MapsIndoors17MPDirectionsQuery")
959963
/// \param destination Destination location.
960964
///
961965
- (nonnull instancetype)initWithOrigin:(id <MPLocation> _Nonnull)origin destination:(id <MPLocation> _Nonnull)destination OBJC_DESIGNATED_INITIALIZER;
966+
/// Initialiser that takes points as origin and destination.
967+
/// \param originPoint Origin point.
968+
///
969+
/// \param destinationPoint Destination point.
970+
///
971+
- (nonnull instancetype)initWithOriginPoint:(MPPoint * _Nonnull)originPoint destinationPoint:(MPPoint * _Nonnull)destinationPoint OBJC_DESIGNATED_INITIALIZER;
962972
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
963973
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
964974
@end
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)