Skip to content

Commit

Permalink
chore(ios): add proper constant naming
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Sep 24, 2023
1 parent 26cae56 commit 04831a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ios/Classes/TiMapModule.m
Expand Up @@ -294,7 +294,8 @@ - (void)completerDidUpdateResults:(MKLocalSearchCompleter *)completer
#if IS_SDK_IOS_16
MAKE_SYSTEM_PROP(FEATURE_TERRITORIES, MKMapFeatureOptionTerritories);
MAKE_SYSTEM_PROP(FEATURE_PHYSICAL_FEATURES, MKMapFeatureOptionPhysicalFeatures);
MAKE_SYSTEM_PROP(FEATURE_TYPE_POINT_OF_INTEREST, MKMapFeatureOptionPointsOfInterest);
MAKE_SYSTEM_PROP_DEPRECATED_REPLACED(FEATURE_TYPE_POINT_OF_INTEREST, MKMapFeatureOptionPointsOfInterest, @"Map.FEATURE_TYPE_POINT_OF_INTEREST", @"12.3.0", @"Map.FEATURE_POINT_OF_INTEREST");
MAKE_SYSTEM_PROP(FEATURE_POINT_OF_INTEREST, MKMapFeatureOptionPointsOfInterest);
#endif

MAKE_SYSTEM_PROP(SEARCH_RESULT_TYPE_ADDRESS, MKLocalSearchCompleterResultTypeAddress);
Expand Down
2 changes: 1 addition & 1 deletion ios/manifest
Expand Up @@ -3,7 +3,7 @@
# during compilation, packaging, distribution, etc.
#

version: 7.3.0
version: 7.3.1
apiversion: 2
architectures: arm64 x86_64
description: External version of Map module
Expand Down

0 comments on commit 04831a1

Please sign in to comment.