├── .clang-format ├── .clang-tidy ├── .cmake-format ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── darwin.md │ └── other.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── .travis.yml ├── .tx └── config ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Cartfile ├── Cartfile.resolved ├── INSTALL.md ├── LICENSE.md ├── Makefile ├── README.md ├── circle.yml ├── cloudformation └── ci.template.js ├── codecov.yml ├── package.json ├── platform ├── darwin │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── LimeGreenStyleLayer.h │ │ └── LimeGreenStyleLayer.m │ ├── ci.xcconfig │ ├── darwin.xcconfig │ ├── docs │ │ ├── guides │ │ │ ├── Customizing Fonts.md │ │ │ ├── For Style Authors.md.ejs │ │ │ ├── Migrating to Expressions.md.ejs │ │ │ ├── Predicates and Expressions.md │ │ │ ├── Tile URL Templates.md.ejs │ │ │ └── Working with GeoJSON Data.md │ │ └── img │ │ │ └── data-driven-styling │ │ │ ├── cast.png │ │ │ ├── exponential-function-1.png │ │ │ ├── exponential-function.png │ │ │ ├── identity.png │ │ │ └── multiply.png │ ├── include │ │ └── mbgl │ │ │ └── util │ │ │ └── image+MGLAdditions.hpp │ ├── loop-files.json │ ├── resources │ │ ├── Base.lproj │ │ │ └── Foundation.strings │ │ ├── ar.lproj │ │ │ └── Foundation.stringsdict │ │ ├── bg.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── ca.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── cs.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── da.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── de.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── en.lproj │ │ │ └── Foundation.stringsdict │ │ ├── es.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── fr.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── gl.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── he.lproj │ │ │ └── Foundation.strings │ │ ├── hu.lproj │ │ │ └── Foundation.stringsdict │ │ ├── ja.lproj │ │ │ └── Foundation.strings │ │ ├── ko.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── lt.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── pl.lproj │ │ │ └── Foundation.stringsdict │ │ ├── pt-BR.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── pt-PT.lproj │ │ │ └── Foundation.stringsdict │ │ ├── ru.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── sv.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── uk.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── vi.lproj │ │ │ ├── Foundation.strings │ │ │ └── Foundation.stringsdict │ │ ├── zh-Hans.lproj │ │ │ └── Foundation.strings │ │ └── zh-Hant.lproj │ │ │ └── Foundation.strings │ ├── scripts │ │ ├── check-public-symbols.js │ │ ├── generate-style-code.js │ │ ├── style-spec-cocoa-conventions-v8.json │ │ ├── style-spec-overrides-v8.json │ │ └── update-examples.js │ ├── src │ │ ├── CFHandle.hpp │ │ ├── MGLAccountManager.h │ │ ├── MGLAccountManager.m │ │ ├── MGLAccountManager_Private.h │ │ ├── MGLAnnotation.h │ │ ├── MGLAttributedExpression.h │ │ ├── MGLAttributedExpression.m │ │ ├── MGLAttributionInfo.h │ │ ├── MGLAttributionInfo.mm │ │ ├── MGLAttributionInfo_Private.h │ │ ├── MGLBackgroundStyleLayer.h │ │ ├── MGLBackgroundStyleLayer.mm │ │ ├── MGLBackgroundStyleLayer_Private.h │ │ ├── MGLCircleStyleLayer.h │ │ ├── MGLCircleStyleLayer.mm │ │ ├── MGLCircleStyleLayer_Private.h │ │ ├── MGLClockDirectionFormatter.h │ │ ├── MGLClockDirectionFormatter.m │ │ ├── MGLCluster.h │ │ ├── MGLCompassDirectionFormatter.h │ │ ├── MGLCompassDirectionFormatter.m │ │ ├── MGLComputedShapeSource.h │ │ ├── MGLComputedShapeSource.mm │ │ ├── MGLComputedShapeSource_Private.h │ │ ├── MGLConversion.h │ │ ├── MGLCoordinateFormatter.h │ │ ├── MGLCoordinateFormatter.m │ │ ├── MGLDistanceFormatter.h │ │ ├── MGLDistanceFormatter.m │ │ ├── MGLEvent.h │ │ ├── MGLEvent.mm │ │ ├── MGLEvent_Private.h │ │ ├── MGLFeature.h │ │ ├── MGLFeature.mm │ │ ├── MGLFeature_Private.h │ │ ├── MGLFillExtrusionStyleLayer.h │ │ ├── MGLFillExtrusionStyleLayer.mm │ │ ├── MGLFillExtrusionStyleLayer_Private.h │ │ ├── MGLFillStyleLayer.h │ │ ├── MGLFillStyleLayer.mm │ │ ├── MGLFillStyleLayer_Private.h │ │ ├── MGLForegroundStyleLayer.h │ │ ├── MGLForegroundStyleLayer.mm │ │ ├── MGLFoundation.h │ │ ├── MGLFoundation.mm │ │ ├── MGLFoundation_Private.h │ │ ├── MGLGeometry.h │ │ ├── MGLGeometry.mm │ │ ├── MGLGeometry_Private.h │ │ ├── MGLHeatmapStyleLayer.h │ │ ├── MGLHeatmapStyleLayer.mm │ │ ├── MGLHeatmapStyleLayer_Private.h │ │ ├── MGLHillshadeStyleLayer.h │ │ ├── MGLHillshadeStyleLayer.mm │ │ ├── MGLHillshadeStyleLayer_Private.h │ │ ├── MGLImageSource.h │ │ ├── MGLImageSource.mm │ │ ├── MGLLight.h │ │ ├── MGLLight.h.ejs │ │ ├── MGLLight.mm │ │ ├── MGLLight.mm.ejs │ │ ├── MGLLight_Private.h │ │ ├── MGLLineStyleLayer.h │ │ ├── MGLLineStyleLayer.mm │ │ ├── MGLLineStyleLayer_Private.h │ │ ├── MGLLocationManager.h │ │ ├── MGLLocationManager.m │ │ ├── MGLLocationManager_Private.h │ │ ├── MGLLoggingConfiguration.h │ │ ├── MGLLoggingConfiguration.mm │ │ ├── MGLLoggingConfiguration_Private.h │ │ ├── MGLMapCamera.h │ │ ├── MGLMapCamera.mm │ │ ├── MGLMapSnapshotter.h │ │ ├── MGLMapSnapshotter.mm │ │ ├── MGLMapSnapshotter_Private.h │ │ ├── MGLMultiPoint.h │ │ ├── MGLMultiPoint.mm │ │ ├── MGLMultiPoint_Private.h │ │ ├── MGLNetworkConfiguration.h │ │ ├── MGLNetworkConfiguration.mm │ │ ├── MGLNetworkConfiguration_Private.h │ │ ├── MGLObserver.h │ │ ├── MGLObserver.mm │ │ ├── MGLObserver_Private.h │ │ ├── MGLOfflinePack.h │ │ ├── MGLOfflinePack.mm │ │ ├── MGLOfflinePack_Private.h │ │ ├── MGLOfflineRegion.h │ │ ├── MGLOfflineRegion_Private.h │ │ ├── MGLOfflineStorage.h │ │ ├── MGLOfflineStorage.mm │ │ ├── MGLOfflineStorage_Private.h │ │ ├── MGLOpenGLStyleLayer.h │ │ ├── MGLOpenGLStyleLayer.mm │ │ ├── MGLOpenGLStyleLayer_Private.h │ │ ├── MGLOverlay.h │ │ ├── MGLPointAnnotation.h │ │ ├── MGLPointAnnotation.mm │ │ ├── MGLPointCollection.h │ │ ├── MGLPointCollection.mm │ │ ├── MGLPointCollection_Private.h │ │ ├── MGLPolygon.h │ │ ├── MGLPolygon.mm │ │ ├── MGLPolygon_Private.h │ │ ├── MGLPolyline.h │ │ ├── MGLPolyline.mm │ │ ├── MGLPolyline_Private.h │ │ ├── MGLRasterDEMSource.h │ │ ├── MGLRasterDEMSource.mm │ │ ├── MGLRasterStyleLayer.h │ │ ├── MGLRasterStyleLayer.mm │ │ ├── MGLRasterStyleLayer_Private.h │ │ ├── MGLRasterTileSource.h │ │ ├── MGLRasterTileSource.mm │ │ ├── MGLRasterTileSource_Private.h │ │ ├── MGLReachability.h │ │ ├── MGLReachability.m │ │ ├── MGLRendererConfiguration.h │ │ ├── MGLRendererConfiguration.mm │ │ ├── MGLRendererConfiguration_Private.h │ │ ├── MGLRendererFrontend.h │ │ ├── MGLSDKMetricsManager.h │ │ ├── MGLSDKMetricsManager.m │ │ ├── MGLSDKMetricsManager_Private.h │ │ ├── MGLShape.h │ │ ├── MGLShape.mm │ │ ├── MGLShapeCollection.h │ │ ├── MGLShapeCollection.mm │ │ ├── MGLShapeOfflineRegion.h │ │ ├── MGLShapeOfflineRegion.mm │ │ ├── MGLShapeOfflineRegion_Private.h │ │ ├── MGLShapeSource.h │ │ ├── MGLShapeSource.mm │ │ ├── MGLShapeSource_Private.h │ │ ├── MGLShape_Private.h │ │ ├── MGLSignpost.h │ │ ├── MGLSource.h │ │ ├── MGLSource.mm │ │ ├── MGLSource_Private.h │ │ ├── MGLStyle.h │ │ ├── MGLStyle.mm │ │ ├── MGLStyleLayer.h │ │ ├── MGLStyleLayer.h.ejs │ │ ├── MGLStyleLayer.mm │ │ ├── MGLStyleLayer.mm.ejs │ │ ├── MGLStyleLayerManager.h │ │ ├── MGLStyleLayerManager.mm │ │ ├── MGLStyleLayer_Private.h │ │ ├── MGLStyleLayer_Private.h.ejs │ │ ├── MGLStyleValue.h │ │ ├── MGLStyleValue.mm │ │ ├── MGLStyleValue_Private.h │ │ ├── MGLStyle_Private.h │ │ ├── MGLSymbolStyleLayer.h │ │ ├── MGLSymbolStyleLayer.mm │ │ ├── MGLSymbolStyleLayer_Private.h │ │ ├── MGLTilePyramidOfflineRegion.h │ │ ├── MGLTilePyramidOfflineRegion.mm │ │ ├── MGLTilePyramidOfflineRegion_Private.h │ │ ├── MGLTileSource.h │ │ ├── MGLTileSource.mm │ │ ├── MGLTileSource_Private.h │ │ ├── MGLTypes.h │ │ ├── MGLTypes.m │ │ ├── MGLValueEvaluator.h │ │ ├── MGLVectorStyleLayer.h │ │ ├── MGLVectorStyleLayer.mm │ │ ├── MGLVectorTileSource.h │ │ ├── MGLVectorTileSource.mm │ │ ├── MGLVectorTileSource_Private.h │ │ ├── NSArray+MGLAdditions.h │ │ ├── NSArray+MGLAdditions.mm │ │ ├── NSBundle+MGLAdditions.h │ │ ├── NSBundle+MGLAdditions.m │ │ ├── NSCoder+MGLAdditions.h │ │ ├── NSCoder+MGLAdditions.mm │ │ ├── NSComparisonPredicate+MGLAdditions.h │ │ ├── NSComparisonPredicate+MGLAdditions.mm │ │ ├── NSCompoundPredicate+MGLAdditions.h │ │ ├── NSCompoundPredicate+MGLAdditions.mm │ │ ├── NSDate+MGLAdditions.h │ │ ├── NSDate+MGLAdditions.mm │ │ ├── NSDictionary+MGLAdditions.h │ │ ├── NSDictionary+MGLAdditions.mm │ │ ├── NSException+MGLAdditions.h │ │ ├── NSExpression+MGLAdditions.h │ │ ├── NSExpression+MGLAdditions.mm │ │ ├── NSExpression+MGLPrivateAdditions.h │ │ ├── NSPredicate+MGLAdditions.h │ │ ├── NSPredicate+MGLAdditions.mm │ │ ├── NSPredicate+MGLPrivateAdditions.h │ │ ├── NSString+MGLAdditions.h │ │ ├── NSString+MGLAdditions.m │ │ ├── NSURL+MGLAdditions.h │ │ ├── NSURL+MGLAdditions.m │ │ ├── NSValue+MGLAdditions.h │ │ ├── NSValue+MGLAdditions.m │ │ ├── NSValue+MGLStyleAttributeAdditions.h │ │ ├── NSValue+MGLStyleAttributeAdditions.mm │ │ ├── async_task.cpp │ │ ├── collator.mm │ │ ├── gl_functions.cpp │ │ ├── headless_backend_cgl.mm │ │ ├── headless_backend_eagl.mm │ │ ├── image.mm │ │ ├── local_glyph_rasterizer.mm │ │ ├── logging_nslog.mm │ │ ├── nsthread.mm │ │ ├── number_format.mm │ │ ├── run_loop.cpp │ │ ├── string_nsstring.mm │ │ └── timer.cpp │ └── test │ │ ├── MGLAttributionInfoTests.m │ │ ├── MGLBackgroundStyleLayerTests.mm │ │ ├── MGLCircleStyleLayerTests.mm │ │ ├── MGLClockDirectionFormatterTests.m │ │ ├── MGLCodingTests.mm │ │ ├── MGLCompassDirectionFormatterTests.m │ │ ├── MGLComputedShapeSourceTests.m │ │ ├── MGLCoordinateFormatterTests.m │ │ ├── MGLDistanceFormatterTests.m │ │ ├── MGLDocumentationExampleTests.swift │ │ ├── MGLDocumentationGuideTests.swift │ │ ├── MGLExpressionTests.mm │ │ ├── MGLFeatureTests.mm │ │ ├── MGLFillExtrusionStyleLayerTests.mm │ │ ├── MGLFillStyleLayerTests.mm │ │ ├── MGLGeometryTests.mm │ │ ├── MGLHeatmapColorTests.mm │ │ ├── MGLHeatmapStyleLayerTests.mm │ │ ├── MGLHillshadeStyleLayerTests.mm │ │ ├── MGLImageSourceTests.m │ │ ├── MGLImageTests.mm │ │ ├── MGLLightTest.mm │ │ ├── MGLLightTest.mm.ejs │ │ ├── MGLLineStyleLayerTests.mm │ │ ├── MGLMapCameraTests.m │ │ ├── MGLMapSnapshotterTests.m │ │ ├── MGLMapViewTests.m │ │ ├── MGLNSDateAdditionsTests.mm │ │ ├── MGLNSStringAdditionsTests.m │ │ ├── MGLOfflinePackTests.mm │ │ ├── MGLOfflineRegionTests.m │ │ ├── MGLOfflineStorageTests.mm │ │ ├── MGLPredicateTests.mm │ │ ├── MGLRasterStyleLayerTests.mm │ │ ├── MGLRendererConfigurationTests.mm │ │ ├── MGLResourceTests.mm │ │ ├── MGLSDKTestHelpers.swift │ │ ├── MGLShapeSourceTests.mm │ │ ├── MGLSourceQueryTests.m │ │ ├── MGLStyleLayerTests.h │ │ ├── MGLStyleLayerTests.m │ │ ├── MGLStyleLayerTests.mm.ejs │ │ ├── MGLStyleTests.mm │ │ ├── MGLSymbolStyleLayerTests.mm │ │ ├── MGLTestAssertionHandler.h │ │ ├── MGLTestAssertionHandler.m │ │ ├── MGLTestUtility.h │ │ ├── MGLTileSetTests.mm │ │ ├── MGLVersionNumber.m │ │ ├── Media.xcassets │ │ ├── Contents.json │ │ ├── Fixtures │ │ │ ├── Contents.json │ │ │ └── MGLMapSnapshotterTests │ │ │ │ ├── Contents.json │ │ │ │ ├── PingFang.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── actualImage.png │ │ │ │ └── expected.png │ │ │ │ └── background.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── background.png │ │ │ │ ├── background@2x.png │ │ │ │ └── background@3x.png │ │ ├── RadarImage.imageset │ │ │ ├── Contents.json │ │ │ └── radar.png │ │ └── TrackingLocationMask.imageset │ │ │ ├── Contents.json │ │ │ ├── TrackingLocationMask.png │ │ │ ├── TrackingLocationMask@2x.png │ │ │ └── TrackingLocationMask@3x.png │ │ ├── amsterdam.geojson │ │ ├── one-liner.json │ │ └── test-Bridging-Header.h ├── default │ └── src │ │ └── mbgl │ │ └── render-test │ │ └── main.cpp ├── ios │ ├── CHANGELOG.md │ ├── DEVELOPING.md │ ├── INSTALL.md │ ├── Integration Test Harness │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── Test.storyboard │ │ └── main.m │ ├── Integration Tests │ │ ├── Annotation Tests │ │ │ └── MGLAnnotationViewIntegrationTests.mm │ │ ├── Background Tests │ │ │ └── MGLBackgroundIntegrationTest.mm │ │ ├── Camera Tests │ │ │ ├── MGLCameraTransitionFinishTests.mm │ │ │ └── MGLCameraTransitionTests.mm │ │ ├── Info.plist │ │ ├── MBGLIntegrationTests.mm │ │ ├── MGLIntegrationTestCase.h │ │ ├── MGLIntegrationTestCase.m │ │ ├── MGLMapViewIntegrationTest.h │ │ ├── MGLMapViewIntegrationTest.m │ │ ├── MGLMapViewPendingBlockTests.mm │ │ ├── MGLMockApplication.h │ │ ├── MGLMockApplication.m │ │ ├── MGLNetworkConfigurationIntegrationTests.mm │ │ ├── MGLShapeSourceTests.m │ │ ├── MGLSourceTests.swift │ │ ├── MGLStyleLayerIntegrationTests.m │ │ ├── MGLStyleURLIntegrationTest.m │ │ ├── MGLTestLocationManager.h │ │ ├── MGLTestLocationManager.m │ │ ├── Query Tests │ │ │ ├── MGLQueryFeatureTests.m │ │ │ └── testQueryRoadsAroundDC.json │ │ ├── Snapshotter Tests │ │ │ ├── MGLMapSnapshotterSwiftTests.swift │ │ │ └── MGLMapSnapshotterTest.m │ │ ├── insert_access_token.sh │ │ └── integration-Bridging-Header.h │ ├── Mapbox-iOS-SDK-snapshot-dynamic.podspec │ ├── Mapbox-iOS-SDK-stripped.podspec │ ├── Mapbox-iOS-SDK.podspec │ ├── Mapbox.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── README.md │ ├── WorkspaceSettings.xcsettings │ ├── app │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-1024.png │ │ │ │ ├── Icon-29@2x-1.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x-1.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ ├── Icon-Small.png │ │ │ │ └── Icon-Spotlight-40@3x.png │ │ │ ├── Contents.json │ │ │ ├── TrackingHeadingMask.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TrackingHeadingMask.png │ │ │ │ ├── TrackingHeadingMask@2x.png │ │ │ │ └── TrackingHeadingMask@3x.png │ │ │ ├── TrackingLocationMask.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TrackingLocationMask.png │ │ │ │ ├── TrackingLocationMask@2x.png │ │ │ │ └── TrackingLocationMask@3x.png │ │ │ ├── TrackingLocationOffMask.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TrackingLocationOffMask.png │ │ │ │ ├── TrackingLocationOffMask@2x.png │ │ │ │ └── TrackingLocationOffMask@3x.png │ │ │ └── settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settings.pdf │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── MBXAnnotationView.h │ │ ├── MBXAnnotationView.m │ │ ├── MBXAppDelegate.h │ │ ├── MBXAppDelegate.m │ │ ├── MBXCustomCalloutView.h │ │ ├── MBXCustomCalloutView.m │ │ ├── MBXCustomLocationViewController.h │ │ ├── MBXCustomLocationViewController.m │ │ ├── MBXEmbeddedMapViewController.h │ │ ├── MBXEmbeddedMapViewController.m │ │ ├── MBXFrameTimeGraphView.h │ │ ├── MBXFrameTimeGraphView.m │ │ ├── MBXOfflinePacksTableViewController.h │ │ ├── MBXOfflinePacksTableViewController.m │ │ ├── MBXOrnamentsViewController.h │ │ ├── MBXOrnamentsViewController.m │ │ ├── MBXSnapshotsViewController.h │ │ ├── MBXSnapshotsViewController.m │ │ ├── MBXState.h │ │ ├── MBXState.m │ │ ├── MBXStateManager.h │ │ ├── MBXStateManager.m │ │ ├── MBXUserLocationAnnotationView.h │ │ ├── MBXUserLocationAnnotationView.m │ │ ├── MBXViewController.h │ │ ├── MBXViewController.m │ │ ├── Main.storyboard │ │ ├── Settings.bundle │ │ │ ├── Base.lproj │ │ │ │ └── Root.strings │ │ │ ├── Root.plist │ │ │ ├── ar.lproj │ │ │ │ └── Root.strings │ │ │ ├── bg.lproj │ │ │ │ └── Root.strings │ │ │ ├── ca.lproj │ │ │ │ └── Root.strings │ │ │ ├── cs.lproj │ │ │ │ └── Root.strings │ │ │ ├── da.lproj │ │ │ │ └── Root.strings │ │ │ ├── de.lproj │ │ │ │ └── Root.strings │ │ │ ├── en.lproj │ │ │ │ └── Root.strings │ │ │ ├── es.lproj │ │ │ │ └── Root.strings │ │ │ ├── fi.lproj │ │ │ │ └── Root.strings │ │ │ ├── fr.lproj │ │ │ │ └── Root.strings │ │ │ ├── gl.lproj │ │ │ │ └── Root.strings │ │ │ ├── he.lproj │ │ │ │ └── Root.strings │ │ │ ├── hu.lproj │ │ │ │ └── Root.strings │ │ │ ├── it.lproj │ │ │ │ └── Root.strings │ │ │ ├── ko.lproj │ │ │ │ └── Root.strings │ │ │ ├── lt.lproj │ │ │ │ └── Root.strings │ │ │ ├── nl.lproj │ │ │ │ └── Root.strings │ │ │ ├── pl.lproj │ │ │ │ └── Root.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── Root.strings │ │ │ ├── pt-PT.lproj │ │ │ │ └── Root.strings │ │ │ ├── ru.lproj │ │ │ │ └── Root.strings │ │ │ ├── sv.lproj │ │ │ │ └── Root.strings │ │ │ ├── uk.lproj │ │ │ │ └── Root.strings │ │ │ ├── vi.lproj │ │ │ │ └── Root.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Root.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── Root.strings │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── bg.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fill_filter_style.json │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── gl.lproj │ │ │ └── Localizable.strings │ │ ├── green.json │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ └── Localizable.strings │ │ ├── insert_access_token.sh │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── line_filter_style.json │ │ ├── lt.lproj │ │ │ └── Localizable.strings │ │ ├── main.m │ │ ├── missing_icon.json │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── numeric_filter_style.json │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── points.geojson │ │ ├── polyline.geojson │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── simple_route.json │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── threestates.geojson │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ ├── benchmark │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-1.png │ │ │ │ ├── Icon-2.png │ │ │ │ ├── Icon-3.png │ │ │ │ ├── Icon-4.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-Small.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ ├── Icon.png │ │ │ │ ├── iTunesArtwork.png │ │ │ │ └── iTunesArtwork@2x.png │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── MBXBenchAppDelegate.h │ │ ├── MBXBenchAppDelegate.m │ │ ├── MBXBenchViewController.h │ │ ├── MBXBenchViewController.mm │ │ ├── assets │ │ │ ├── glyphs │ │ │ │ └── download.sh │ │ │ ├── sprites │ │ │ │ ├── mapbox-streets.json │ │ │ │ ├── mapbox-streets.png │ │ │ │ ├── mapbox-streets@2x.json │ │ │ │ └── mapbox-streets@2x.png │ │ │ ├── styles │ │ │ │ └── streets-v8.json │ │ │ └── tiles │ │ │ │ ├── download.sh │ │ │ │ └── mapbox.mapbox-terrain-v2,mapbox.mapbox-streets-v6.json │ │ ├── locations.cpp │ │ ├── locations.hpp │ │ └── main.m │ ├── config.cmake │ ├── core-files.json │ ├── docs │ │ ├── guides │ │ │ ├── For Style Authors.md │ │ │ ├── Gesture Recognizers.md │ │ │ ├── Info.plist Keys.md │ │ │ ├── Migrating to Expressions.md │ │ │ └── Tile URL Templates.md │ │ ├── img │ │ │ ├── screenshot.png │ │ │ └── user-interaction │ │ │ │ ├── RotateSydney.gif │ │ │ │ └── quickzoom.gif │ │ └── pod-README.md │ ├── framework │ │ ├── Info-static.plist │ │ ├── Info.plist │ │ ├── Mapbox-static.h │ │ ├── modulemap │ │ └── strip-frameworks.sh │ ├── ios.xcconfig │ ├── ios.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── xcbaselines │ │ │ └── 16376B061FFD9DAF0000563E.xcbaseline │ │ │ │ ├── 491B7610-4299-4667-8EB4-F0F9753EBC16.plist │ │ │ │ └── Info.plist │ │ │ └── xcschemes │ │ │ ├── CI.xcscheme │ │ │ ├── Integration Test Harness.xcscheme │ │ │ ├── bench.xcscheme │ │ │ ├── dynamic+static.xcscheme │ │ │ ├── dynamic.xcscheme │ │ │ ├── iosapp.xcscheme │ │ │ └── static.xcscheme │ ├── ios.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ ├── jazzy.yml │ ├── originals │ │ ├── compass.sketch │ │ └── screenshot.sketch │ ├── resources │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ ├── Images.xcassets │ │ │ ├── Compass.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── compass.pdf │ │ │ ├── Contents.json │ │ │ ├── default_marker.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── default_marker.pdf │ │ │ ├── mapbox.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mapbox.pdf │ │ │ └── mapbox_helmet.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mapbox_helmet.pdf │ │ ├── README │ │ ├── ar.lproj │ │ │ └── Localizable.stringsdict │ │ ├── bg.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── ca.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── cs.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── da.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── de.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── en.lproj │ │ │ └── Localizable.stringsdict │ │ ├── es.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── fr.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── gl.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hu.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── lt.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── pt-BR.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── pt-PT.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── ru.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── sv.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── uk.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── vi.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ ├── scripts │ │ ├── create-api-downloads-pr.sh │ │ ├── deploy-packages.sh │ │ ├── deploy-snapshot.sh │ │ ├── deploy-to-cocoapods.sh │ │ ├── document.sh │ │ ├── install-packaging-dependencies.sh │ │ ├── ios-code-coverage.sh │ │ ├── lint-podspecs.js │ │ ├── metrics.sh │ │ ├── package.sh │ │ ├── publish.sh │ │ ├── release-notes-github.md.ejs │ │ ├── release-notes-jazzy.md.ejs │ │ ├── release-notes.js │ │ ├── update-version.sh │ │ └── validate-framework-zip.sh │ ├── sdk-files.json │ ├── src │ │ ├── MGLAnnotationContainerView.h │ │ ├── MGLAnnotationContainerView.m │ │ ├── MGLAnnotationContainerView_Private.h │ │ ├── MGLAnnotationImage.h │ │ ├── MGLAnnotationImage.m │ │ ├── MGLAnnotationImage_Private.h │ │ ├── MGLAnnotationView.h │ │ ├── MGLAnnotationView.mm │ │ ├── MGLAnnotationView_Private.h │ │ ├── MGLApplication.m │ │ ├── MGLApplication_Private.h │ │ ├── MGLCalloutView.h │ │ ├── MGLCameraChangeReason.h │ │ ├── MGLCompactCalloutView.h │ │ ├── MGLCompactCalloutView.m │ │ ├── MGLCompassButton.h │ │ ├── MGLCompassButton.mm │ │ ├── MGLCompassButton_Private.h │ │ ├── MGLFaux3DUserLocationAnnotationView.h │ │ ├── MGLFaux3DUserLocationAnnotationView.mm │ │ ├── MGLMapAccessibilityElement.h │ │ ├── MGLMapAccessibilityElement.mm │ │ ├── MGLMapView+IBAdditions.h │ │ ├── MGLMapView+Impl.h │ │ ├── MGLMapView+Impl.mm │ │ ├── MGLMapView+OpenGL.h │ │ ├── MGLMapView+OpenGL.mm │ │ ├── MGLMapView.h │ │ ├── MGLMapView.mm │ │ ├── MGLMapViewDelegate.h │ │ ├── MGLMapView_Experimental.h │ │ ├── MGLMapView_Private.h │ │ ├── MGLMapboxEvents.h │ │ ├── MGLMapboxEvents.m │ │ ├── MGLSDKUpdateChecker.h │ │ ├── MGLSDKUpdateChecker.mm │ │ ├── MGLScaleBar.h │ │ ├── MGLScaleBar.mm │ │ ├── MGLTelemetryConfig.h │ │ ├── MGLTelemetryConfig.m │ │ ├── MGLUserLocation.h │ │ ├── MGLUserLocation.m │ │ ├── MGLUserLocationAnnotationView.h │ │ ├── MGLUserLocationAnnotationView.mm │ │ ├── MGLUserLocationAnnotationViewStyle.h │ │ ├── MGLUserLocationAnnotationViewStyle.m │ │ ├── MGLUserLocationAnnotationView_Private.h │ │ ├── MGLUserLocationHeadingArrowLayer.h │ │ ├── MGLUserLocationHeadingArrowLayer.m │ │ ├── MGLUserLocationHeadingBeamLayer.h │ │ ├── MGLUserLocationHeadingBeamLayer.m │ │ ├── MGLUserLocationHeadingIndicator.h │ │ ├── MGLUserLocation_Private.h │ │ ├── Mapbox.h │ │ ├── NSOrthography+MGLAdditions.h │ │ ├── NSOrthography+MGLAdditions.m │ │ ├── UIColor+MGLAdditions.h │ │ ├── UIColor+MGLAdditions.mm │ │ ├── UIDevice+MGLAdditions.h │ │ ├── UIDevice+MGLAdditions.m │ │ ├── UIImage+MGLAdditions.h │ │ ├── UIImage+MGLAdditions.mm │ │ ├── UIView+MGLAdditions.h │ │ ├── UIView+MGLAdditions.m │ │ ├── UIViewController+MGLAdditions.h │ │ └── UIViewController+MGLAdditions.m │ ├── test │ │ ├── Info.plist │ │ ├── MBXLoggingConfigurationTests.m │ │ ├── MGLAccountManagerTests.m │ │ ├── MGLAnnotationViewIntegrationTests.swift │ │ ├── MGLAnnotationViewTests.m │ │ ├── MGLMapAccessibilityElementTests.m │ │ ├── MGLMapViewCompassViewTests.mm │ │ ├── MGLMapViewContentInsetTests.m │ │ ├── MGLMapViewDelegateIntegrationTests.swift │ │ ├── MGLMapViewDirectionTests.mm │ │ ├── MGLMapViewGestureRecognizerTests.mm │ │ ├── MGLMapViewLayoutTests.m │ │ ├── MGLMapViewPitchTests.m │ │ ├── MGLMapViewScaleBarTests.m │ │ ├── MGLMapViewZoomTests.mm │ │ ├── MGLMockGestureRecognizers.h │ │ ├── MGLMockGestureRecognizers.m │ │ ├── MGLNSOrthographyAdditionsTests.m │ │ └── MGLNetworkConfigurationTests.m │ ├── toolchain.cmake │ └── vendor │ │ ├── SMCalloutView │ │ ├── SMCalloutView.h │ │ └── SMCalloutView.m │ │ └── mapbox-accounts-ios │ │ ├── MBXSKUToken.h │ │ └── libmbxaccounts.a └── macos │ ├── CHANGELOG.md │ ├── DEVELOPING.md │ ├── ExportOptions.plist │ ├── INSTALL.md │ ├── Mapbox-macOS-SDK-symbols.podspec │ ├── Mapbox-macOS-SDK.podspec │ ├── README.md │ ├── WorkspaceSettings.xcsettings │ ├── app │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon128x128.png │ │ │ ├── AppIcon128x128@2x.png │ │ │ ├── AppIcon16x16.png │ │ │ ├── AppIcon16x16@2x.png │ │ │ ├── AppIcon256x256.png │ │ │ ├── AppIcon256x256@2x.png │ │ │ ├── AppIcon32x32.png │ │ │ ├── AppIcon32x32@2x.png │ │ │ ├── AppIcon512x512.png │ │ │ ├── AppIcon512x512@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Layers │ │ │ ├── Contents.json │ │ │ ├── background.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── background.pdf │ │ │ ├── circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── circle.pdf │ │ │ ├── fill-extrusion.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fill-extrusion.pdf │ │ │ ├── fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fill.pdf │ │ │ ├── heatmap.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── heatmap.pdf │ │ │ ├── hillshade.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hillshade.pdf │ │ │ └── symbol.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── symbol.pdf │ │ ├── Radar │ │ │ ├── Contents.json │ │ │ ├── southeast_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── southeast_radar_0.png │ │ │ ├── southeast_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── southeast_radar_1.png │ │ │ ├── southeast_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── southeast_radar_2.png │ │ │ └── southeast_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── southeast_radar_3.png │ │ └── ohio.imageset │ │ │ ├── Contents.json │ │ │ └── ohio.pdf │ ├── Base.lproj │ │ ├── Localizable.strings │ │ ├── MainMenu.xib │ │ └── MapDocument.xib │ ├── Credits.rtf │ ├── DroppedPinAnnotation.h │ ├── DroppedPinAnnotation.m │ ├── Info.plist │ ├── LocationCoordinate2DTransformer.h │ ├── LocationCoordinate2DTransformer.m │ ├── MGLStyle+MBXAdditions.h │ ├── MGLStyle+MBXAdditions.m │ ├── MapDocument.h │ ├── MapDocument.m │ ├── OfflinePackNameValueTransformer.h │ ├── OfflinePackNameValueTransformer.m │ ├── StyleLayerIconTransformer.h │ ├── StyleLayerIconTransformer.m │ ├── TimeIntervalTransformer.h │ ├── TimeIntervalTransformer.m │ ├── ar.lproj │ │ └── Localizable.strings │ ├── bg.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── gl.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── heatmap.json │ ├── hu.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── lt.lproj │ │ └── Localizable.strings │ ├── main.m │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ ├── pt-PT.lproj │ │ └── Localizable.strings │ ├── resources │ │ ├── background.svg │ │ ├── circle.svg │ │ ├── fill-extrusion.svg │ │ ├── fill.svg │ │ ├── heatmap.svg │ │ ├── hillshade.svg │ │ └── symbol.svg │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ ├── wms.json │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ └── zh-Hant.lproj │ │ └── Localizable.strings │ ├── config.cmake │ ├── core-files.json │ ├── docs │ ├── doc-README.md │ ├── guides │ │ ├── For Style Authors.md │ │ ├── Info.plist Keys.md │ │ ├── Migrating to Expressions.md │ │ └── Tile URL Templates.md │ ├── img │ │ └── screenshot.jpg │ └── pod-README.md │ ├── jazzy.yml │ ├── macos.xcconfig │ ├── macos.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── CI.xcscheme │ │ ├── dynamic.xcscheme │ │ └── macosapp.xcscheme │ ├── macos.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ ├── ninja │ ├── scripts │ ├── deploy-packages.sh │ ├── document.sh │ ├── metrics.sh │ ├── package.sh │ └── update-version.sh │ ├── sdk-files.json │ ├── sdk │ ├── Base.lproj │ │ ├── Localizable.strings │ │ └── MGLAnnotationCallout.xib │ ├── Info.plist │ ├── ar.lproj │ │ └── Localizable.strings │ ├── bg.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── default_marker.pdf │ ├── es.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── gl.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── lt.lproj │ │ └── Localizable.strings │ ├── mapbox.pdf │ ├── mapbox_helmet.pdf │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ ├── pt-PT.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ └── zh-Hant.lproj │ │ └── Localizable.strings │ ├── src │ ├── MGLAnnotationImage.h │ ├── MGLAnnotationImage.m │ ├── MGLAnnotationImage_Private.h │ ├── MGLAttributionButton.h │ ├── MGLAttributionButton.mm │ ├── MGLCompassCell.h │ ├── MGLCompassCell.m │ ├── MGLMapView+IBAdditions.h │ ├── MGLMapView+IBAdditions.mm │ ├── MGLMapView+Impl.h │ ├── MGLMapView+Impl.mm │ ├── MGLMapView+OpenGL.h │ ├── MGLMapView+OpenGL.mm │ ├── MGLMapView.h │ ├── MGLMapView.mm │ ├── MGLMapViewDelegate.h │ ├── MGLMapView_Private.h │ ├── MGLOpenGLLayer.h │ ├── MGLOpenGLLayer.mm │ ├── Mapbox.h │ ├── NSColor+MGLAdditions.h │ ├── NSColor+MGLAdditions.mm │ ├── NSImage+MGLAdditions.h │ ├── NSImage+MGLAdditions.mm │ ├── NSProcessInfo+MGLAdditions.h │ └── NSProcessInfo+MGLAdditions.m │ └── test │ ├── Info.plist │ ├── MGLAnnotationTests.m │ ├── MGLAttributionButtonTests.m │ └── MGLMapViewDelegateIntegrationTests.swift ├── scripts ├── changelog_staging │ ├── idle-event.json │ ├── no-offline-cjk.json │ └── tile-is-child.json ├── check-ci-job-skippability.js ├── check-qt.sh ├── check-sha256.ps1 ├── check_binary_size.js ├── ci │ ├── Dockerfile │ └── etc │ │ └── apt │ │ └── sources.list ├── clang-tidy-diff.py ├── clang-tools.sh ├── code-coverage.sh ├── codestyle.sh ├── collect-coverage.sh ├── config.xcconfig.in ├── docs-update-maps.sh ├── doxy-coverage.py ├── environment.js ├── generate-file-lists.js ├── generate-shaders.js ├── generate-style-code.js ├── launch-c-xcode.in ├── launch-c.in ├── launch-cxx-xcode.in ├── launch-cxx.in ├── lldb-types ├── log_memory_benchmarks.sh ├── mason.sh ├── nitpick │ ├── generated-code.js │ ├── index.js │ └── submodule-pin.js ├── notify-slack.sh ├── publish_binary_size.js ├── publish_core_codecoverage.js ├── publish_doxygen_coverage.js ├── publish_github_stats.js ├── standalone.cmake ├── standalone.sh ├── style-code.js ├── style-spec.js ├── trigger-maps-documentation-deploy-steps.sh ├── update-boost.sh ├── update_ca_bundle.sh ├── valgrind.sh ├── valgrind.sup └── vendor │ ├── common.sh │ ├── expected.sh │ ├── icu.sh │ ├── nunicode.sh │ └── sqlite.sh └── test └── fixtures ├── local_glyphs └── mixed.json ├── offline_database └── sideload_sat.db └── resources └── glyphs.pbf /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cmake-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.cmake-format -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @mapbox/maps-ios 2 | 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/darwin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.github/ISSUE_TEMPLATE/darwin.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/circle.yml -------------------------------------------------------------------------------- /cloudformation/ci.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/cloudformation/ci.template.js -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/codecov.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/package.json -------------------------------------------------------------------------------- /platform/darwin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/.gitignore -------------------------------------------------------------------------------- /platform/darwin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/README.md -------------------------------------------------------------------------------- /platform/darwin/app/LimeGreenStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/app/LimeGreenStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/app/LimeGreenStyleLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/app/LimeGreenStyleLayer.m -------------------------------------------------------------------------------- /platform/darwin/ci.xcconfig: -------------------------------------------------------------------------------- 1 | COMPILER_INDEX_STORE_ENABLE = NO 2 | -------------------------------------------------------------------------------- /platform/darwin/darwin.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/darwin.xcconfig -------------------------------------------------------------------------------- /platform/darwin/docs/guides/Customizing Fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/docs/guides/Customizing Fonts.md -------------------------------------------------------------------------------- /platform/darwin/docs/guides/For Style Authors.md.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/docs/guides/For Style Authors.md.ejs -------------------------------------------------------------------------------- /platform/darwin/docs/guides/Tile URL Templates.md.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/docs/guides/Tile URL Templates.md.ejs -------------------------------------------------------------------------------- /platform/darwin/docs/img/data-driven-styling/cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/docs/img/data-driven-styling/cast.png -------------------------------------------------------------------------------- /platform/darwin/loop-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/loop-files.json -------------------------------------------------------------------------------- /platform/darwin/resources/Base.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/Base.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/bg.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/bg.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/ca.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/ca.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/cs.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/cs.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/da.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/da.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/de.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/de.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/es.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/es.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/fr.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/fr.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/gl.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/gl.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/he.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/he.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/ja.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/ja.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/ko.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/ko.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/lt.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/lt.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/ru.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/ru.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/sv.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/sv.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/uk.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/uk.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/resources/vi.lproj/Foundation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/resources/vi.lproj/Foundation.strings -------------------------------------------------------------------------------- /platform/darwin/scripts/check-public-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/scripts/check-public-symbols.js -------------------------------------------------------------------------------- /platform/darwin/scripts/generate-style-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/scripts/generate-style-code.js -------------------------------------------------------------------------------- /platform/darwin/scripts/style-spec-overrides-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/scripts/style-spec-overrides-v8.json -------------------------------------------------------------------------------- /platform/darwin/scripts/update-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/scripts/update-examples.js -------------------------------------------------------------------------------- /platform/darwin/src/CFHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/CFHandle.hpp -------------------------------------------------------------------------------- /platform/darwin/src/MGLAccountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAccountManager.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLAccountManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAccountManager.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLAccountManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAccountManager_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAnnotation.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLAttributedExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAttributedExpression.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLAttributedExpression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAttributedExpression.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLAttributionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAttributionInfo.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLAttributionInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAttributionInfo.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLAttributionInfo_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLAttributionInfo_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLBackgroundStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLBackgroundStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLBackgroundStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLBackgroundStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLBackgroundStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLBackgroundStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLCircleStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCircleStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLCircleStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCircleStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLCircleStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCircleStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLClockDirectionFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLClockDirectionFormatter.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLClockDirectionFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLClockDirectionFormatter.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCluster.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLCompassDirectionFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCompassDirectionFormatter.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLCompassDirectionFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCompassDirectionFormatter.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLComputedShapeSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLComputedShapeSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLComputedShapeSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLComputedShapeSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLComputedShapeSource_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLComputedShapeSource_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLConversion.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLCoordinateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCoordinateFormatter.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLCoordinateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLCoordinateFormatter.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLDistanceFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLDistanceFormatter.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLDistanceFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLDistanceFormatter.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLEvent.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLEvent.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLEvent_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLEvent_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFeature.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLFeature.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFeature.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLFeature_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFeature_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLFillExtrusionStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFillExtrusionStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLFillExtrusionStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFillExtrusionStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLFillStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFillStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLFillStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFillStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLFillStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFillStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLForegroundStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLForegroundStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLForegroundStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLForegroundStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFoundation.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLFoundation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFoundation.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLFoundation_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLFoundation_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLGeometry.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLGeometry.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLGeometry_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLGeometry_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLHeatmapStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLHeatmapStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLHeatmapStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLHeatmapStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLHeatmapStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLHeatmapStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLHillshadeStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLHillshadeStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLHillshadeStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLHillshadeStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLHillshadeStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLHillshadeStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLImageSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLImageSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLImageSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLight.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLLight.h.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLight.h.ejs -------------------------------------------------------------------------------- /platform/darwin/src/MGLLight.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLight.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLLight.mm.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLight.mm.ejs -------------------------------------------------------------------------------- /platform/darwin/src/MGLLight_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLight_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLLineStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLineStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLLineStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLineStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLLineStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLineStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLocationManager.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLocationManager.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLLocationManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLocationManager_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLLoggingConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLoggingConfiguration.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLLoggingConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLoggingConfiguration.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLLoggingConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLLoggingConfiguration_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLMapCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMapCamera.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLMapCamera.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMapCamera.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLMapSnapshotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMapSnapshotter.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLMapSnapshotter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMapSnapshotter.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLMapSnapshotter_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMapSnapshotter_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLMultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMultiPoint.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLMultiPoint.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMultiPoint.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLMultiPoint_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLMultiPoint_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLNetworkConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLNetworkConfiguration.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLNetworkConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLNetworkConfiguration.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLNetworkConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLNetworkConfiguration_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLObserver.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLObserver.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLObserver.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLObserver_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLObserver_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflinePack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflinePack.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflinePack.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflinePack.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflinePack_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflinePack_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflineRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflineRegion.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflineRegion_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflineRegion_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflineStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflineStorage.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflineStorage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflineStorage.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLOfflineStorage_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOfflineStorage_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOpenGLStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOpenGLStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOpenGLStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOpenGLStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLOpenGLStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOpenGLStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLOverlay.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLPointAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPointAnnotation.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLPointAnnotation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPointAnnotation.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLPointCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPointCollection.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLPointCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPointCollection.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLPointCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPointCollection_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPolygon.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLPolygon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPolygon.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLPolygon_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPolygon_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPolyline.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLPolyline.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPolyline.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLPolyline_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLPolyline_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterDEMSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterDEMSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterDEMSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterDEMSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterTileSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterTileSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterTileSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterTileSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLRasterTileSource_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRasterTileSource_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLReachability.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLReachability.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLRendererConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRendererConfiguration.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLRendererConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRendererConfiguration.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLRendererConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRendererConfiguration_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLRendererFrontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLRendererFrontend.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLSDKMetricsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSDKMetricsManager.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLSDKMetricsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSDKMetricsManager.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLSDKMetricsManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSDKMetricsManager_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShape.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLShape.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShape.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeCollection.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeCollection.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeOfflineRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeOfflineRegion.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeOfflineRegion.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeOfflineRegion.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeOfflineRegion_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeOfflineRegion_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLShapeSource_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShapeSource_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLShape_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLShape_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLSignpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSignpost.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLSource_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSource_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyle.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyle.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayer.h.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayer.h.ejs -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayer.mm.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayer.mm.ejs -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayerManager.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayerManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayerManager.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleLayer_Private.h.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleLayer_Private.h.ejs -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleValue.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleValue.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleValue.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyleValue_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyleValue_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLStyle_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLStyle_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLSymbolStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSymbolStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLSymbolStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSymbolStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLSymbolStyleLayer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLSymbolStyleLayer_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLTilePyramidOfflineRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLTilePyramidOfflineRegion.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLTilePyramidOfflineRegion.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLTilePyramidOfflineRegion.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLTileSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLTileSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLTileSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLTileSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLTileSource_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLTileSource_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLTypes.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLTypes.m -------------------------------------------------------------------------------- /platform/darwin/src/MGLValueEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLValueEvaluator.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLVectorStyleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLVectorStyleLayer.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLVectorStyleLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLVectorStyleLayer.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLVectorTileSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLVectorTileSource.h -------------------------------------------------------------------------------- /platform/darwin/src/MGLVectorTileSource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLVectorTileSource.mm -------------------------------------------------------------------------------- /platform/darwin/src/MGLVectorTileSource_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/MGLVectorTileSource_Private.h -------------------------------------------------------------------------------- /platform/darwin/src/NSArray+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSArray+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSArray+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSArray+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/darwin/src/NSBundle+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSBundle+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSBundle+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSBundle+MGLAdditions.m -------------------------------------------------------------------------------- /platform/darwin/src/NSCoder+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSCoder+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSCoder+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSCoder+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/darwin/src/NSCompoundPredicate+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSCompoundPredicate+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSCompoundPredicate+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSCompoundPredicate+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/darwin/src/NSDate+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSDate+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSDate+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSDate+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/darwin/src/NSDictionary+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSDictionary+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSDictionary+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSDictionary+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/darwin/src/NSException+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSException+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSExpression+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSExpression+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSExpression+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSExpression+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/darwin/src/NSExpression+MGLPrivateAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSExpression+MGLPrivateAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSPredicate+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSPredicate+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSPredicate+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSPredicate+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/darwin/src/NSPredicate+MGLPrivateAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSPredicate+MGLPrivateAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSString+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSString+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSString+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSString+MGLAdditions.m -------------------------------------------------------------------------------- /platform/darwin/src/NSURL+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSURL+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSURL+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSURL+MGLAdditions.m -------------------------------------------------------------------------------- /platform/darwin/src/NSValue+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSValue+MGLAdditions.h -------------------------------------------------------------------------------- /platform/darwin/src/NSValue+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/NSValue+MGLAdditions.m -------------------------------------------------------------------------------- /platform/darwin/src/async_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/async_task.cpp -------------------------------------------------------------------------------- /platform/darwin/src/collator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/collator.mm -------------------------------------------------------------------------------- /platform/darwin/src/gl_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/gl_functions.cpp -------------------------------------------------------------------------------- /platform/darwin/src/headless_backend_cgl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/headless_backend_cgl.mm -------------------------------------------------------------------------------- /platform/darwin/src/headless_backend_eagl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/headless_backend_eagl.mm -------------------------------------------------------------------------------- /platform/darwin/src/image.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/image.mm -------------------------------------------------------------------------------- /platform/darwin/src/local_glyph_rasterizer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/local_glyph_rasterizer.mm -------------------------------------------------------------------------------- /platform/darwin/src/logging_nslog.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/logging_nslog.mm -------------------------------------------------------------------------------- /platform/darwin/src/nsthread.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/nsthread.mm -------------------------------------------------------------------------------- /platform/darwin/src/number_format.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/number_format.mm -------------------------------------------------------------------------------- /platform/darwin/src/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/run_loop.cpp -------------------------------------------------------------------------------- /platform/darwin/src/string_nsstring.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/string_nsstring.mm -------------------------------------------------------------------------------- /platform/darwin/src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/src/timer.cpp -------------------------------------------------------------------------------- /platform/darwin/test/MGLAttributionInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLAttributionInfoTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLBackgroundStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLBackgroundStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLCircleStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLCircleStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLClockDirectionFormatterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLClockDirectionFormatterTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLCodingTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLCodingTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLComputedShapeSourceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLComputedShapeSourceTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLCoordinateFormatterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLCoordinateFormatterTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLDistanceFormatterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLDistanceFormatterTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLDocumentationExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLDocumentationExampleTests.swift -------------------------------------------------------------------------------- /platform/darwin/test/MGLDocumentationGuideTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLDocumentationGuideTests.swift -------------------------------------------------------------------------------- /platform/darwin/test/MGLExpressionTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLExpressionTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLFeatureTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLFeatureTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLFillExtrusionStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLFillExtrusionStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLFillStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLFillStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLGeometryTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLGeometryTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLHeatmapColorTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLHeatmapColorTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLHeatmapStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLHeatmapStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLHillshadeStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLHillshadeStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLImageSourceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLImageSourceTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLImageTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLImageTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLLightTest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLLightTest.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLLightTest.mm.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLLightTest.mm.ejs -------------------------------------------------------------------------------- /platform/darwin/test/MGLLineStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLLineStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLMapCameraTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLMapCameraTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLMapSnapshotterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLMapSnapshotterTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLMapViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLMapViewTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLNSDateAdditionsTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLNSDateAdditionsTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLNSStringAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLNSStringAdditionsTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLOfflinePackTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLOfflinePackTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLOfflineRegionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLOfflineRegionTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLOfflineStorageTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLOfflineStorageTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLPredicateTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLPredicateTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLRasterStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLRasterStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLRendererConfigurationTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLRendererConfigurationTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLResourceTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLResourceTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLSDKTestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLSDKTestHelpers.swift -------------------------------------------------------------------------------- /platform/darwin/test/MGLShapeSourceTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLShapeSourceTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLSourceQueryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLSourceQueryTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLStyleLayerTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLStyleLayerTests.h -------------------------------------------------------------------------------- /platform/darwin/test/MGLStyleLayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLStyleLayerTests.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLStyleLayerTests.mm.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLStyleLayerTests.mm.ejs -------------------------------------------------------------------------------- /platform/darwin/test/MGLStyleTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLStyleTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLSymbolStyleLayerTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLSymbolStyleLayerTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLTestAssertionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLTestAssertionHandler.h -------------------------------------------------------------------------------- /platform/darwin/test/MGLTestAssertionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLTestAssertionHandler.m -------------------------------------------------------------------------------- /platform/darwin/test/MGLTestUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLTestUtility.h -------------------------------------------------------------------------------- /platform/darwin/test/MGLTileSetTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLTileSetTests.mm -------------------------------------------------------------------------------- /platform/darwin/test/MGLVersionNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/MGLVersionNumber.m -------------------------------------------------------------------------------- /platform/darwin/test/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /platform/darwin/test/amsterdam.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/amsterdam.geojson -------------------------------------------------------------------------------- /platform/darwin/test/one-liner.json: -------------------------------------------------------------------------------- 1 | {"version":8,"sources":{},"layers":[]} 2 | -------------------------------------------------------------------------------- /platform/darwin/test/test-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/darwin/test/test-Bridging-Header.h -------------------------------------------------------------------------------- /platform/default/src/mbgl/render-test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/default/src/mbgl/render-test/main.cpp -------------------------------------------------------------------------------- /platform/ios/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/CHANGELOG.md -------------------------------------------------------------------------------- /platform/ios/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/DEVELOPING.md -------------------------------------------------------------------------------- /platform/ios/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/INSTALL.md -------------------------------------------------------------------------------- /platform/ios/Integration Test Harness/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Test Harness/AppDelegate.h -------------------------------------------------------------------------------- /platform/ios/Integration Test Harness/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Test Harness/AppDelegate.m -------------------------------------------------------------------------------- /platform/ios/Integration Test Harness/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Test Harness/Info.plist -------------------------------------------------------------------------------- /platform/ios/Integration Test Harness/Test.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Test Harness/Test.storyboard -------------------------------------------------------------------------------- /platform/ios/Integration Test Harness/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Test Harness/main.m -------------------------------------------------------------------------------- /platform/ios/Integration Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/Info.plist -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MBGLIntegrationTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MBGLIntegrationTests.mm -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLIntegrationTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLIntegrationTestCase.h -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLIntegrationTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLIntegrationTestCase.m -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLMockApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLMockApplication.h -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLMockApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLMockApplication.m -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLShapeSourceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLShapeSourceTests.m -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLSourceTests.swift -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLTestLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLTestLocationManager.h -------------------------------------------------------------------------------- /platform/ios/Integration Tests/MGLTestLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/MGLTestLocationManager.m -------------------------------------------------------------------------------- /platform/ios/Integration Tests/insert_access_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Integration Tests/insert_access_token.sh -------------------------------------------------------------------------------- /platform/ios/Mapbox-iOS-SDK-snapshot-dynamic.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Mapbox-iOS-SDK-snapshot-dynamic.podspec -------------------------------------------------------------------------------- /platform/ios/Mapbox-iOS-SDK-stripped.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Mapbox-iOS-SDK-stripped.podspec -------------------------------------------------------------------------------- /platform/ios/Mapbox-iOS-SDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Mapbox-iOS-SDK.podspec -------------------------------------------------------------------------------- /platform/ios/Mapbox.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Mapbox.playground/Contents.swift -------------------------------------------------------------------------------- /platform/ios/Mapbox.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/Mapbox.playground/contents.xcplayground -------------------------------------------------------------------------------- /platform/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/README.md -------------------------------------------------------------------------------- /platform/ios/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /platform/ios/app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /platform/ios/app/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Info.plist -------------------------------------------------------------------------------- /platform/ios/app/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/LaunchScreen.storyboard -------------------------------------------------------------------------------- /platform/ios/app/MBXAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXAnnotationView.h -------------------------------------------------------------------------------- /platform/ios/app/MBXAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXAnnotationView.m -------------------------------------------------------------------------------- /platform/ios/app/MBXAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXAppDelegate.h -------------------------------------------------------------------------------- /platform/ios/app/MBXAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXAppDelegate.m -------------------------------------------------------------------------------- /platform/ios/app/MBXCustomCalloutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXCustomCalloutView.h -------------------------------------------------------------------------------- /platform/ios/app/MBXCustomCalloutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXCustomCalloutView.m -------------------------------------------------------------------------------- /platform/ios/app/MBXCustomLocationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXCustomLocationViewController.h -------------------------------------------------------------------------------- /platform/ios/app/MBXCustomLocationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXCustomLocationViewController.m -------------------------------------------------------------------------------- /platform/ios/app/MBXEmbeddedMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXEmbeddedMapViewController.h -------------------------------------------------------------------------------- /platform/ios/app/MBXEmbeddedMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXEmbeddedMapViewController.m -------------------------------------------------------------------------------- /platform/ios/app/MBXFrameTimeGraphView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXFrameTimeGraphView.h -------------------------------------------------------------------------------- /platform/ios/app/MBXFrameTimeGraphView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXFrameTimeGraphView.m -------------------------------------------------------------------------------- /platform/ios/app/MBXOfflinePacksTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXOfflinePacksTableViewController.h -------------------------------------------------------------------------------- /platform/ios/app/MBXOfflinePacksTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXOfflinePacksTableViewController.m -------------------------------------------------------------------------------- /platform/ios/app/MBXOrnamentsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXOrnamentsViewController.h -------------------------------------------------------------------------------- /platform/ios/app/MBXOrnamentsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXOrnamentsViewController.m -------------------------------------------------------------------------------- /platform/ios/app/MBXSnapshotsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXSnapshotsViewController.h -------------------------------------------------------------------------------- /platform/ios/app/MBXSnapshotsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXSnapshotsViewController.m -------------------------------------------------------------------------------- /platform/ios/app/MBXState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXState.h -------------------------------------------------------------------------------- /platform/ios/app/MBXState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXState.m -------------------------------------------------------------------------------- /platform/ios/app/MBXStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXStateManager.h -------------------------------------------------------------------------------- /platform/ios/app/MBXStateManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXStateManager.m -------------------------------------------------------------------------------- /platform/ios/app/MBXUserLocationAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXUserLocationAnnotationView.h -------------------------------------------------------------------------------- /platform/ios/app/MBXUserLocationAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXUserLocationAnnotationView.m -------------------------------------------------------------------------------- /platform/ios/app/MBXViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXViewController.h -------------------------------------------------------------------------------- /platform/ios/app/MBXViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/MBXViewController.m -------------------------------------------------------------------------------- /platform/ios/app/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Main.storyboard -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/ar.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/bg.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/bg.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/ca.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/ca.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/cs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/cs.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/da.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/da.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/de.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/es.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/es.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/fi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/fi.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/fr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/fr.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/gl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/gl.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/he.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/he.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/hu.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/hu.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/it.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/it.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/ko.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/ko.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/lt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/lt.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/nl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/nl.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/pl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/pl.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/ru.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/sv.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/sv.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/uk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/uk.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/Settings.bundle/vi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/Settings.bundle/vi.lproj/Root.strings -------------------------------------------------------------------------------- /platform/ios/app/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/fill_filter_style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/fill_filter_style.json -------------------------------------------------------------------------------- /platform/ios/app/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/green.json -------------------------------------------------------------------------------- /platform/ios/app/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/insert_access_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/insert_access_token.sh -------------------------------------------------------------------------------- /platform/ios/app/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/line_filter_style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/line_filter_style.json -------------------------------------------------------------------------------- /platform/ios/app/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/main.m -------------------------------------------------------------------------------- /platform/ios/app/missing_icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/missing_icon.json -------------------------------------------------------------------------------- /platform/ios/app/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/numeric_filter_style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/numeric_filter_style.json -------------------------------------------------------------------------------- /platform/ios/app/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/points.geojson -------------------------------------------------------------------------------- /platform/ios/app/polyline.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/polyline.geojson -------------------------------------------------------------------------------- /platform/ios/app/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/simple_route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/simple_route.json -------------------------------------------------------------------------------- /platform/ios/app/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/threestates.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/app/threestates.geojson -------------------------------------------------------------------------------- /platform/ios/app/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/app/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ios/benchmark/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/Info.plist -------------------------------------------------------------------------------- /platform/ios/benchmark/MBXBenchAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/MBXBenchAppDelegate.h -------------------------------------------------------------------------------- /platform/ios/benchmark/MBXBenchAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/MBXBenchAppDelegate.m -------------------------------------------------------------------------------- /platform/ios/benchmark/MBXBenchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/MBXBenchViewController.h -------------------------------------------------------------------------------- /platform/ios/benchmark/MBXBenchViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/MBXBenchViewController.mm -------------------------------------------------------------------------------- /platform/ios/benchmark/assets/glyphs/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/assets/glyphs/download.sh -------------------------------------------------------------------------------- /platform/ios/benchmark/assets/styles/streets-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/assets/styles/streets-v8.json -------------------------------------------------------------------------------- /platform/ios/benchmark/assets/tiles/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/assets/tiles/download.sh -------------------------------------------------------------------------------- /platform/ios/benchmark/locations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/locations.cpp -------------------------------------------------------------------------------- /platform/ios/benchmark/locations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/locations.hpp -------------------------------------------------------------------------------- /platform/ios/benchmark/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/benchmark/main.m -------------------------------------------------------------------------------- /platform/ios/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/config.cmake -------------------------------------------------------------------------------- /platform/ios/core-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/core-files.json -------------------------------------------------------------------------------- /platform/ios/docs/guides/For Style Authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/guides/For Style Authors.md -------------------------------------------------------------------------------- /platform/ios/docs/guides/Gesture Recognizers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/guides/Gesture Recognizers.md -------------------------------------------------------------------------------- /platform/ios/docs/guides/Info.plist Keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/guides/Info.plist Keys.md -------------------------------------------------------------------------------- /platform/ios/docs/guides/Migrating to Expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/guides/Migrating to Expressions.md -------------------------------------------------------------------------------- /platform/ios/docs/guides/Tile URL Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/guides/Tile URL Templates.md -------------------------------------------------------------------------------- /platform/ios/docs/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/img/screenshot.png -------------------------------------------------------------------------------- /platform/ios/docs/img/user-interaction/RotateSydney.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/img/user-interaction/RotateSydney.gif -------------------------------------------------------------------------------- /platform/ios/docs/img/user-interaction/quickzoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/img/user-interaction/quickzoom.gif -------------------------------------------------------------------------------- /platform/ios/docs/pod-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/docs/pod-README.md -------------------------------------------------------------------------------- /platform/ios/framework/Info-static.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/framework/Info-static.plist -------------------------------------------------------------------------------- /platform/ios/framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/framework/Info.plist -------------------------------------------------------------------------------- /platform/ios/framework/Mapbox-static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/framework/Mapbox-static.h -------------------------------------------------------------------------------- /platform/ios/framework/modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/framework/modulemap -------------------------------------------------------------------------------- /platform/ios/framework/strip-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/framework/strip-frameworks.sh -------------------------------------------------------------------------------- /platform/ios/ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/ios.xcconfig -------------------------------------------------------------------------------- /platform/ios/ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platform/ios/ios.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/ios.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platform/ios/jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/jazzy.yml -------------------------------------------------------------------------------- /platform/ios/originals/compass.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/originals/compass.sketch -------------------------------------------------------------------------------- /platform/ios/originals/screenshot.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/originals/screenshot.sketch -------------------------------------------------------------------------------- /platform/ios/resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /platform/ios/resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/README -------------------------------------------------------------------------------- /platform/ios/resources/ar.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ar.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/bg.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/bg.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/ca.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ca.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/cs.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/cs.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/da.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/da.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/de.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/de.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/es.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/es.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/fr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/fr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/gl.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/gl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/gl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/hu.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/hu.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/ko.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ko.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/lt.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/lt.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/ru.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/ru.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/sv.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/sv.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/uk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/uk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/ios/resources/vi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/resources/vi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /platform/ios/scripts/create-api-downloads-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/create-api-downloads-pr.sh -------------------------------------------------------------------------------- /platform/ios/scripts/deploy-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/deploy-packages.sh -------------------------------------------------------------------------------- /platform/ios/scripts/deploy-snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/deploy-snapshot.sh -------------------------------------------------------------------------------- /platform/ios/scripts/deploy-to-cocoapods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/deploy-to-cocoapods.sh -------------------------------------------------------------------------------- /platform/ios/scripts/document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/document.sh -------------------------------------------------------------------------------- /platform/ios/scripts/install-packaging-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/install-packaging-dependencies.sh -------------------------------------------------------------------------------- /platform/ios/scripts/ios-code-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/ios-code-coverage.sh -------------------------------------------------------------------------------- /platform/ios/scripts/lint-podspecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/lint-podspecs.js -------------------------------------------------------------------------------- /platform/ios/scripts/metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/metrics.sh -------------------------------------------------------------------------------- /platform/ios/scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/package.sh -------------------------------------------------------------------------------- /platform/ios/scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/publish.sh -------------------------------------------------------------------------------- /platform/ios/scripts/release-notes-github.md.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/release-notes-github.md.ejs -------------------------------------------------------------------------------- /platform/ios/scripts/release-notes-jazzy.md.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/release-notes-jazzy.md.ejs -------------------------------------------------------------------------------- /platform/ios/scripts/release-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/release-notes.js -------------------------------------------------------------------------------- /platform/ios/scripts/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/update-version.sh -------------------------------------------------------------------------------- /platform/ios/scripts/validate-framework-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/scripts/validate-framework-zip.sh -------------------------------------------------------------------------------- /platform/ios/sdk-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/sdk-files.json -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationContainerView.h -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationContainerView.m -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationContainerView_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationContainerView_Private.h -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationImage.h -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationImage.m -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationImage_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationImage_Private.h -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationView.h -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationView.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLAnnotationView_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLAnnotationView_Private.h -------------------------------------------------------------------------------- /platform/ios/src/MGLApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLApplication.m -------------------------------------------------------------------------------- /platform/ios/src/MGLApplication_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLApplication_Private.h -------------------------------------------------------------------------------- /platform/ios/src/MGLCalloutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLCalloutView.h -------------------------------------------------------------------------------- /platform/ios/src/MGLCameraChangeReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLCameraChangeReason.h -------------------------------------------------------------------------------- /platform/ios/src/MGLCompactCalloutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLCompactCalloutView.h -------------------------------------------------------------------------------- /platform/ios/src/MGLCompactCalloutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLCompactCalloutView.m -------------------------------------------------------------------------------- /platform/ios/src/MGLCompassButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLCompassButton.h -------------------------------------------------------------------------------- /platform/ios/src/MGLCompassButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLCompassButton.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLCompassButton_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLCompassButton_Private.h -------------------------------------------------------------------------------- /platform/ios/src/MGLFaux3DUserLocationAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLFaux3DUserLocationAnnotationView.h -------------------------------------------------------------------------------- /platform/ios/src/MGLFaux3DUserLocationAnnotationView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLFaux3DUserLocationAnnotationView.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLMapAccessibilityElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapAccessibilityElement.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapAccessibilityElement.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapAccessibilityElement.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView+IBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView+IBAdditions.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView+Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView+Impl.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView+Impl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView+Impl.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView+OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView+OpenGL.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView+OpenGL.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView+OpenGL.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLMapViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapViewDelegate.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView_Experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView_Experimental.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapView_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapView_Private.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapboxEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapboxEvents.h -------------------------------------------------------------------------------- /platform/ios/src/MGLMapboxEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLMapboxEvents.m -------------------------------------------------------------------------------- /platform/ios/src/MGLSDKUpdateChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLSDKUpdateChecker.h -------------------------------------------------------------------------------- /platform/ios/src/MGLSDKUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLSDKUpdateChecker.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLScaleBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLScaleBar.h -------------------------------------------------------------------------------- /platform/ios/src/MGLScaleBar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLScaleBar.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLTelemetryConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLTelemetryConfig.h -------------------------------------------------------------------------------- /platform/ios/src/MGLTelemetryConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLTelemetryConfig.m -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocation.h -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocation.m -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationAnnotationView.h -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationAnnotationView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationAnnotationView.mm -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationAnnotationViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationAnnotationViewStyle.h -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationAnnotationViewStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationAnnotationViewStyle.m -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationHeadingArrowLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationHeadingArrowLayer.h -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationHeadingArrowLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationHeadingArrowLayer.m -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationHeadingBeamLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationHeadingBeamLayer.h -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationHeadingBeamLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationHeadingBeamLayer.m -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocationHeadingIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocationHeadingIndicator.h -------------------------------------------------------------------------------- /platform/ios/src/MGLUserLocation_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/MGLUserLocation_Private.h -------------------------------------------------------------------------------- /platform/ios/src/Mapbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/Mapbox.h -------------------------------------------------------------------------------- /platform/ios/src/NSOrthography+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/NSOrthography+MGLAdditions.h -------------------------------------------------------------------------------- /platform/ios/src/NSOrthography+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/NSOrthography+MGLAdditions.m -------------------------------------------------------------------------------- /platform/ios/src/UIColor+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIColor+MGLAdditions.h -------------------------------------------------------------------------------- /platform/ios/src/UIColor+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIColor+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/ios/src/UIDevice+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIDevice+MGLAdditions.h -------------------------------------------------------------------------------- /platform/ios/src/UIDevice+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIDevice+MGLAdditions.m -------------------------------------------------------------------------------- /platform/ios/src/UIImage+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIImage+MGLAdditions.h -------------------------------------------------------------------------------- /platform/ios/src/UIImage+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIImage+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/ios/src/UIView+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIView+MGLAdditions.h -------------------------------------------------------------------------------- /platform/ios/src/UIView+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIView+MGLAdditions.m -------------------------------------------------------------------------------- /platform/ios/src/UIViewController+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIViewController+MGLAdditions.h -------------------------------------------------------------------------------- /platform/ios/src/UIViewController+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/src/UIViewController+MGLAdditions.m -------------------------------------------------------------------------------- /platform/ios/test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/Info.plist -------------------------------------------------------------------------------- /platform/ios/test/MBXLoggingConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MBXLoggingConfigurationTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLAccountManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLAccountManagerTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLAnnotationViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLAnnotationViewTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLMapAccessibilityElementTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapAccessibilityElementTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLMapViewCompassViewTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapViewCompassViewTests.mm -------------------------------------------------------------------------------- /platform/ios/test/MGLMapViewContentInsetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapViewContentInsetTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLMapViewDirectionTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapViewDirectionTests.mm -------------------------------------------------------------------------------- /platform/ios/test/MGLMapViewLayoutTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapViewLayoutTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLMapViewPitchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapViewPitchTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLMapViewScaleBarTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapViewScaleBarTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLMapViewZoomTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMapViewZoomTests.mm -------------------------------------------------------------------------------- /platform/ios/test/MGLMockGestureRecognizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMockGestureRecognizers.h -------------------------------------------------------------------------------- /platform/ios/test/MGLMockGestureRecognizers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLMockGestureRecognizers.m -------------------------------------------------------------------------------- /platform/ios/test/MGLNSOrthographyAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLNSOrthographyAdditionsTests.m -------------------------------------------------------------------------------- /platform/ios/test/MGLNetworkConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/test/MGLNetworkConfigurationTests.m -------------------------------------------------------------------------------- /platform/ios/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/toolchain.cmake -------------------------------------------------------------------------------- /platform/ios/vendor/SMCalloutView/SMCalloutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/vendor/SMCalloutView/SMCalloutView.h -------------------------------------------------------------------------------- /platform/ios/vendor/SMCalloutView/SMCalloutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/ios/vendor/SMCalloutView/SMCalloutView.m -------------------------------------------------------------------------------- /platform/macos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/CHANGELOG.md -------------------------------------------------------------------------------- /platform/macos/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/DEVELOPING.md -------------------------------------------------------------------------------- /platform/macos/ExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/ExportOptions.plist -------------------------------------------------------------------------------- /platform/macos/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/INSTALL.md -------------------------------------------------------------------------------- /platform/macos/Mapbox-macOS-SDK-symbols.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/Mapbox-macOS-SDK-symbols.podspec -------------------------------------------------------------------------------- /platform/macos/Mapbox-macOS-SDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/Mapbox-macOS-SDK.podspec -------------------------------------------------------------------------------- /platform/macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/README.md -------------------------------------------------------------------------------- /platform/macos/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /platform/macos/app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/AppDelegate.h -------------------------------------------------------------------------------- /platform/macos/app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/AppDelegate.m -------------------------------------------------------------------------------- /platform/macos/app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /platform/macos/app/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /platform/macos/app/Base.lproj/MapDocument.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/Base.lproj/MapDocument.xib -------------------------------------------------------------------------------- /platform/macos/app/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/Credits.rtf -------------------------------------------------------------------------------- /platform/macos/app/DroppedPinAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/DroppedPinAnnotation.h -------------------------------------------------------------------------------- /platform/macos/app/DroppedPinAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/DroppedPinAnnotation.m -------------------------------------------------------------------------------- /platform/macos/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/Info.plist -------------------------------------------------------------------------------- /platform/macos/app/LocationCoordinate2DTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/LocationCoordinate2DTransformer.h -------------------------------------------------------------------------------- /platform/macos/app/LocationCoordinate2DTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/LocationCoordinate2DTransformer.m -------------------------------------------------------------------------------- /platform/macos/app/MGLStyle+MBXAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/MGLStyle+MBXAdditions.h -------------------------------------------------------------------------------- /platform/macos/app/MGLStyle+MBXAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/MGLStyle+MBXAdditions.m -------------------------------------------------------------------------------- /platform/macos/app/MapDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/MapDocument.h -------------------------------------------------------------------------------- /platform/macos/app/MapDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/MapDocument.m -------------------------------------------------------------------------------- /platform/macos/app/OfflinePackNameValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/OfflinePackNameValueTransformer.h -------------------------------------------------------------------------------- /platform/macos/app/OfflinePackNameValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/OfflinePackNameValueTransformer.m -------------------------------------------------------------------------------- /platform/macos/app/StyleLayerIconTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/StyleLayerIconTransformer.h -------------------------------------------------------------------------------- /platform/macos/app/StyleLayerIconTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/StyleLayerIconTransformer.m -------------------------------------------------------------------------------- /platform/macos/app/TimeIntervalTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/TimeIntervalTransformer.h -------------------------------------------------------------------------------- /platform/macos/app/TimeIntervalTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/TimeIntervalTransformer.m -------------------------------------------------------------------------------- /platform/macos/app/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/heatmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/heatmap.json -------------------------------------------------------------------------------- /platform/macos/app/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/main.m -------------------------------------------------------------------------------- /platform/macos/app/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/resources/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/resources/background.svg -------------------------------------------------------------------------------- /platform/macos/app/resources/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/resources/circle.svg -------------------------------------------------------------------------------- /platform/macos/app/resources/fill-extrusion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/resources/fill-extrusion.svg -------------------------------------------------------------------------------- /platform/macos/app/resources/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/resources/fill.svg -------------------------------------------------------------------------------- /platform/macos/app/resources/heatmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/resources/heatmap.svg -------------------------------------------------------------------------------- /platform/macos/app/resources/hillshade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/resources/hillshade.svg -------------------------------------------------------------------------------- /platform/macos/app/resources/symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/resources/symbol.svg -------------------------------------------------------------------------------- /platform/macos/app/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/wms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/app/wms.json -------------------------------------------------------------------------------- /platform/macos/app/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/app/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/macos/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/config.cmake -------------------------------------------------------------------------------- /platform/macos/core-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/core-files.json -------------------------------------------------------------------------------- /platform/macos/docs/doc-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/docs/doc-README.md -------------------------------------------------------------------------------- /platform/macos/docs/guides/For Style Authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/docs/guides/For Style Authors.md -------------------------------------------------------------------------------- /platform/macos/docs/guides/Info.plist Keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/docs/guides/Info.plist Keys.md -------------------------------------------------------------------------------- /platform/macos/docs/guides/Tile URL Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/docs/guides/Tile URL Templates.md -------------------------------------------------------------------------------- /platform/macos/docs/img/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/docs/img/screenshot.jpg -------------------------------------------------------------------------------- /platform/macos/docs/pod-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/docs/pod-README.md -------------------------------------------------------------------------------- /platform/macos/jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/jazzy.yml -------------------------------------------------------------------------------- /platform/macos/macos.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/macos.xcconfig -------------------------------------------------------------------------------- /platform/macos/macos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/macos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platform/macos/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/ninja -------------------------------------------------------------------------------- /platform/macos/scripts/deploy-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/scripts/deploy-packages.sh -------------------------------------------------------------------------------- /platform/macos/scripts/document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/scripts/document.sh -------------------------------------------------------------------------------- /platform/macos/scripts/metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/scripts/metrics.sh -------------------------------------------------------------------------------- /platform/macos/scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/scripts/package.sh -------------------------------------------------------------------------------- /platform/macos/scripts/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/scripts/update-version.sh -------------------------------------------------------------------------------- /platform/macos/sdk-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk-files.json -------------------------------------------------------------------------------- /platform/macos/sdk/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/Info.plist -------------------------------------------------------------------------------- /platform/macos/sdk/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/default_marker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/default_marker.pdf -------------------------------------------------------------------------------- /platform/macos/sdk/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/gl.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/mapbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/mapbox.pdf -------------------------------------------------------------------------------- /platform/macos/sdk/mapbox_helmet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/mapbox_helmet.pdf -------------------------------------------------------------------------------- /platform/macos/sdk/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/sdk/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/sdk/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /platform/macos/src/MGLAnnotationImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLAnnotationImage.h -------------------------------------------------------------------------------- /platform/macos/src/MGLAnnotationImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLAnnotationImage.m -------------------------------------------------------------------------------- /platform/macos/src/MGLAnnotationImage_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLAnnotationImage_Private.h -------------------------------------------------------------------------------- /platform/macos/src/MGLAttributionButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLAttributionButton.h -------------------------------------------------------------------------------- /platform/macos/src/MGLAttributionButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLAttributionButton.mm -------------------------------------------------------------------------------- /platform/macos/src/MGLCompassCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLCompassCell.h -------------------------------------------------------------------------------- /platform/macos/src/MGLCompassCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLCompassCell.m -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView+IBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView+IBAdditions.h -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView+IBAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView+IBAdditions.mm -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView+Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView+Impl.h -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView+Impl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView+Impl.mm -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView+OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView+OpenGL.h -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView+OpenGL.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView+OpenGL.mm -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView.h -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView.mm -------------------------------------------------------------------------------- /platform/macos/src/MGLMapViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapViewDelegate.h -------------------------------------------------------------------------------- /platform/macos/src/MGLMapView_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLMapView_Private.h -------------------------------------------------------------------------------- /platform/macos/src/MGLOpenGLLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLOpenGLLayer.h -------------------------------------------------------------------------------- /platform/macos/src/MGLOpenGLLayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/MGLOpenGLLayer.mm -------------------------------------------------------------------------------- /platform/macos/src/Mapbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/Mapbox.h -------------------------------------------------------------------------------- /platform/macos/src/NSColor+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/NSColor+MGLAdditions.h -------------------------------------------------------------------------------- /platform/macos/src/NSColor+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/NSColor+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/macos/src/NSImage+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/NSImage+MGLAdditions.h -------------------------------------------------------------------------------- /platform/macos/src/NSImage+MGLAdditions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/NSImage+MGLAdditions.mm -------------------------------------------------------------------------------- /platform/macos/src/NSProcessInfo+MGLAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/NSProcessInfo+MGLAdditions.h -------------------------------------------------------------------------------- /platform/macos/src/NSProcessInfo+MGLAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/src/NSProcessInfo+MGLAdditions.m -------------------------------------------------------------------------------- /platform/macos/test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/test/Info.plist -------------------------------------------------------------------------------- /platform/macos/test/MGLAnnotationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/test/MGLAnnotationTests.m -------------------------------------------------------------------------------- /platform/macos/test/MGLAttributionButtonTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/platform/macos/test/MGLAttributionButtonTests.m -------------------------------------------------------------------------------- /scripts/changelog_staging/idle-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/changelog_staging/idle-event.json -------------------------------------------------------------------------------- /scripts/changelog_staging/no-offline-cjk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/changelog_staging/no-offline-cjk.json -------------------------------------------------------------------------------- /scripts/changelog_staging/tile-is-child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/changelog_staging/tile-is-child.json -------------------------------------------------------------------------------- /scripts/check-ci-job-skippability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/check-ci-job-skippability.js -------------------------------------------------------------------------------- /scripts/check-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/check-qt.sh -------------------------------------------------------------------------------- /scripts/check-sha256.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/check-sha256.ps1 -------------------------------------------------------------------------------- /scripts/check_binary_size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/check_binary_size.js -------------------------------------------------------------------------------- /scripts/ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/ci/Dockerfile -------------------------------------------------------------------------------- /scripts/ci/etc/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/ci/etc/apt/sources.list -------------------------------------------------------------------------------- /scripts/clang-tidy-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/clang-tidy-diff.py -------------------------------------------------------------------------------- /scripts/clang-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/clang-tools.sh -------------------------------------------------------------------------------- /scripts/code-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/code-coverage.sh -------------------------------------------------------------------------------- /scripts/codestyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/codestyle.sh -------------------------------------------------------------------------------- /scripts/collect-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/collect-coverage.sh -------------------------------------------------------------------------------- /scripts/config.xcconfig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/config.xcconfig.in -------------------------------------------------------------------------------- /scripts/docs-update-maps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/docs-update-maps.sh -------------------------------------------------------------------------------- /scripts/doxy-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/doxy-coverage.py -------------------------------------------------------------------------------- /scripts/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/environment.js -------------------------------------------------------------------------------- /scripts/generate-file-lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/generate-file-lists.js -------------------------------------------------------------------------------- /scripts/generate-shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/generate-shaders.js -------------------------------------------------------------------------------- /scripts/generate-style-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/generate-style-code.js -------------------------------------------------------------------------------- /scripts/launch-c-xcode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/launch-c-xcode.in -------------------------------------------------------------------------------- /scripts/launch-c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/launch-c.in -------------------------------------------------------------------------------- /scripts/launch-cxx-xcode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/launch-cxx-xcode.in -------------------------------------------------------------------------------- /scripts/launch-cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/launch-cxx.in -------------------------------------------------------------------------------- /scripts/lldb-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/lldb-types -------------------------------------------------------------------------------- /scripts/log_memory_benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/log_memory_benchmarks.sh -------------------------------------------------------------------------------- /scripts/mason.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/mason.sh -------------------------------------------------------------------------------- /scripts/nitpick/generated-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/nitpick/generated-code.js -------------------------------------------------------------------------------- /scripts/nitpick/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/nitpick/index.js -------------------------------------------------------------------------------- /scripts/nitpick/submodule-pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/nitpick/submodule-pin.js -------------------------------------------------------------------------------- /scripts/notify-slack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/notify-slack.sh -------------------------------------------------------------------------------- /scripts/publish_binary_size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/publish_binary_size.js -------------------------------------------------------------------------------- /scripts/publish_core_codecoverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/publish_core_codecoverage.js -------------------------------------------------------------------------------- /scripts/publish_doxygen_coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/publish_doxygen_coverage.js -------------------------------------------------------------------------------- /scripts/publish_github_stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/publish_github_stats.js -------------------------------------------------------------------------------- /scripts/standalone.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/standalone.cmake -------------------------------------------------------------------------------- /scripts/standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/standalone.sh -------------------------------------------------------------------------------- /scripts/style-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/style-code.js -------------------------------------------------------------------------------- /scripts/style-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/style-spec.js -------------------------------------------------------------------------------- /scripts/trigger-maps-documentation-deploy-steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/trigger-maps-documentation-deploy-steps.sh -------------------------------------------------------------------------------- /scripts/update-boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/update-boost.sh -------------------------------------------------------------------------------- /scripts/update_ca_bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/update_ca_bundle.sh -------------------------------------------------------------------------------- /scripts/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/valgrind.sh -------------------------------------------------------------------------------- /scripts/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/valgrind.sup -------------------------------------------------------------------------------- /scripts/vendor/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/vendor/common.sh -------------------------------------------------------------------------------- /scripts/vendor/expected.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/vendor/expected.sh -------------------------------------------------------------------------------- /scripts/vendor/icu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/vendor/icu.sh -------------------------------------------------------------------------------- /scripts/vendor/nunicode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/vendor/nunicode.sh -------------------------------------------------------------------------------- /scripts/vendor/sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/scripts/vendor/sqlite.sh -------------------------------------------------------------------------------- /test/fixtures/local_glyphs/mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/test/fixtures/local_glyphs/mixed.json -------------------------------------------------------------------------------- /test/fixtures/offline_database/sideload_sat.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/test/fixtures/offline_database/sideload_sat.db -------------------------------------------------------------------------------- /test/fixtures/resources/glyphs.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-gl-native-ios/HEAD/test/fixtures/resources/glyphs.pbf --------------------------------------------------------------------------------