diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2015-10-29 12:23:50 -0700 |
---|---|---|
committer | Minh Nguyễn <mxn@1ec5.org> | 2015-10-30 13:09:37 -0700 |
commit | 557b8afb7c310a6330f741ca0f38fcec098f3156 (patch) | |
tree | 701483c58128279167261b55f6ecbdfc3353f9a5 /gyp | |
parent | 3b6dc37e396931c883fe6ab602802dbb00defed9 (diff) | |
download | qtlocation-mapboxgl-557b8afb7c310a6330f741ca0f38fcec098f3156.tar.gz |
[core][iOS] Source iOS styles from default_styles
Moved mbgl::util::default_styles to a more appropriate location, where iOS platform code can also find it. Moved -[MGLMapView bundledStyleURLs] (which is now deprecated) and the style switcher in iosapp to default_styles.
Added a collection of convenience methods for getting style URLs. It makes little sense to layer an enum atop this, as MapKit does, because MGLMapView styles aren’t limited to this set. A good analogy is UIColor. This also makes for a good entry point for future runtime styling APIs.
Introduced independent constants for each default style, because it’s more common to need access to a particular style than to iterate over them. This fact is apparent in the MGLStyle class, which now uses macros and assertions to ensure that it’s kept up-to-date with changes in default_styles.
/ref #1462
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/platform-ios.gypi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gyp/platform-ios.gypi b/gyp/platform-ios.gypi index 38460612f4..6b9dd50274 100644 --- a/gyp/platform-ios.gypi +++ b/gyp/platform-ios.gypi @@ -52,6 +52,8 @@ '../platform/ios/MGLShape.m', '../include/mbgl/ios/MGLAnnotationImage.h', '../platform/ios/MGLAnnotationImage.m', + '../include/mbgl/ios/MGLStyle.h', + '../platform/ios/MGLStyle.mm', '../platform/ios/NSBundle+MGLAdditions.h', '../platform/ios/NSBundle+MGLAdditions.m', '../platform/ios/NSException+MGLAdditions.h', |