Skip to content

Commit

Permalink
Fix Constant Naming to bring parity with master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
designbymind authored Jan 22, 2024
1 parent 1062a93 commit d0ceaf6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ios/Classes/TiMapModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,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

0 comments on commit d0ceaf6

Please sign in to comment.