├── .githooks └── pre-commit ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── navigation.png ├── pull_request_template.md ├── splash-image-ios.png └── workflows │ └── ios.yml ├── .gitignore ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── maplibre-navigation-ios.xcscheme ├── .tools ├── git-format-staged └── git-format-staged-LICENSE.txt ├── .tx └── config ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme └── example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── Secrets.xcconfig ├── Gemfile ├── LICENSE.md ├── MapboxCoreNavigation ├── Array.swift ├── BundleAdditions.swift ├── CLLocation.swift ├── CLLocationDirection.swift ├── Constants.swift ├── Date.swift ├── DistanceFormatter.swift ├── Feedback.swift ├── Fixture.swift ├── Locale.swift ├── MMEEventsManager.swift ├── NavigationLocationManager.swift ├── NavigationRouteOptions.swift ├── NavigationSettings.swift ├── ProcessInfo.swift ├── ReplayLocationManager.swift ├── Resources │ ├── Base.lproj │ │ └── Localizable.strings │ ├── ar.lproj │ │ └── Localizable.strings │ ├── bg.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── lt.lproj │ │ └── Localizable.strings │ ├── nl.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 ├── Route.swift ├── RouteController.swift ├── RouteControllerDelegate.swift ├── RouteOptions.swift ├── RouteProgress.swift ├── RouteStep.swift ├── Router.swift ├── ScreenCapture.swift ├── Sequence.swift ├── SessionState.swift ├── SimulatedLocationManager.swift ├── String.swift ├── TunnelIntersectionManager.swift └── UIDevice.swift ├── MapboxCoreNavigationObjc ├── MBNavigationSettings.h ├── MBNavigationSettings.m ├── MBRouteController.h ├── MBRouteController.m └── include │ └── MapboxCoreNavigation.h ├── MapboxCoreNavigationTests ├── DistanceFormatterTests.swift ├── Heading.swift ├── LocationTests.swift ├── MD5Tests.swift ├── MapboxCoreNavigationTests.swift ├── NavigationLocationManagerTests.swift ├── Resources │ ├── A12-To-Veenendaal-Bigger-Detour.json │ ├── A12-To-Veenendaal-Normal-With-Big-Trafficjam.json │ ├── A12-To-Veenendaal-Normal.json │ ├── A12-To-Veenendaal-Slight-Difference.json │ ├── Info.plist │ ├── Nijmegen-Arnhem-Veenendaal.json │ ├── Nijmegen-Bemmel-Veenendaal.json │ ├── Nijmegen-Bemmel-Veenendaal2.json │ ├── Wolfheze-Veenendaal-Normal.json │ ├── Wolfheze-Veenendaal-Small-Detour-At-End.json │ ├── dc-line.geojson │ ├── md5_crazy_strings.txt │ ├── route.json │ ├── routeWithInstructions.json │ ├── routeWithTunnels_9thStreetDC.json │ ├── straight-line.json │ ├── tunnel.json │ └── tunnel.route ├── RouteControllerTests.swift ├── RouteProgressTests.swift ├── StringTests.swift ├── Support │ ├── DirectionsSpy.swift │ ├── DummyURLSessionDataTask.swift │ └── RouteControllerDelegateSpy.swift └── TunnelIntersectionManagerTests.swift ├── MapboxNavigation ├── BottomBannerView.swift ├── BottomBannerViewLayout.swift ├── Bundle.swift ├── CGPoint.swift ├── CGSize.swift ├── CPMapTemplate.swift ├── Cache.swift ├── CarPlayManager+Search.swift ├── CarPlayManager.swift ├── CarPlayMapViewController.swift ├── CarPlayNavigationViewController.swift ├── ConfigManager.swift ├── CongestionLevel.swift ├── Constants.swift ├── DashedLineView.swift ├── DataCache.swift ├── DayStyle.swift ├── DialogViewController.swift ├── Dictionary.swift ├── EndOfRouteViewController.swift ├── Error.swift ├── ErrorCode.swift ├── ExitView.swift ├── FeedbackCollectionViewCell.swift ├── FeedbackItem.swift ├── GenericRouteShield.swift ├── HighwayShield.swift ├── ImageCache.swift ├── ImageDownload.swift ├── ImageDownloader.swift ├── ImageRepository.swift ├── InstructionLabel.swift ├── InstructionPresenter.swift ├── InstructionsBannerView.swift ├── InstructionsBannerViewLayout.swift ├── LaneView.swift ├── LanesStyleKit.swift ├── LanesView.swift ├── Locale.swift ├── MLNMapView.swift ├── MLNVectorTileSource.swift ├── ManeuverDirection.swift ├── ManeuverView.swift ├── ManeuversStyleKit.swift ├── NSAttributedString.swift ├── NavigationMapView.swift ├── NavigationView.swift ├── NavigationViewController.swift ├── NavigationViewLayout.swift ├── NextBannerView.swift ├── Resources │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── carplay │ │ │ ├── Contents.json │ │ │ ├── carplay_close.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_close.pdf │ │ │ ├── carplay_feedback.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_feedback.pdf │ │ │ ├── carplay_locate.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_locate.pdf │ │ │ ├── carplay_minus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_minus.pdf │ │ │ ├── carplay_overview.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_overview.pdf │ │ │ ├── carplay_pan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_pan.pdf │ │ │ ├── carplay_plus.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_plus.pdf │ │ │ ├── carplay_search.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_search.pdf │ │ │ ├── carplay_volume_off.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── carplay_volume_off.pdf │ │ │ └── carplay_volume_on.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── volume_on_btn.pdf │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ └── close.pdf │ │ ├── exit-left.imageset │ │ │ ├── Contents.json │ │ │ └── exit-left.pdf │ │ ├── exit-right.imageset │ │ │ ├── Contents.json │ │ │ └── exit-right.pdf │ │ ├── feedback-closed-road.imageset │ │ │ ├── Contents.json │ │ │ ├── road-closed-1x.png │ │ │ ├── road-closed-2x.png │ │ │ └── road-closed-3x.png │ │ ├── feedback-confusing-directions.imageset │ │ │ ├── Contents.json │ │ │ ├── confusing-directions-1x.png │ │ │ ├── confusing-directions-2x.png │ │ │ └── confusing-directions-3x.png │ │ ├── feedback-exit.imageset │ │ │ ├── Contents.json │ │ │ ├── exit-1x.png │ │ │ ├── exit-2x.png │ │ │ └── exit-3x.png │ │ ├── feedback-gps.imageset │ │ │ ├── Contents.json │ │ │ ├── gps-1x.png │ │ │ ├── gps-2x.png │ │ │ └── gps-3x.png │ │ ├── feedback-map-error.imageset │ │ │ ├── Contents.json │ │ │ ├── map-error-1x.png │ │ │ ├── map-error-2x.png │ │ │ └── map-error-3x.png │ │ ├── feedback-missing-road.imageset │ │ │ ├── Contents.json │ │ │ ├── road-closed-1x.png │ │ │ ├── road-closed-2x.png │ │ │ └── road-closed-3x.png │ │ ├── feedback-no-turn-allowed.imageset │ │ │ ├── Contents.json │ │ │ ├── no-turn-allowed-1x.png │ │ │ ├── no-turn-allowed-2x.png │ │ │ └── no-turn-allowed-3x.png │ │ ├── feedback-wrong-directions.imageset │ │ │ ├── Contents.json │ │ │ ├── wrong-directions-1x.png │ │ │ ├── wrong-directions-2x.png │ │ │ └── wrong-directions-3x.png │ │ ├── feedback.imageset │ │ │ ├── Contents.json │ │ │ └── feedback.pdf │ │ ├── feedback │ │ │ ├── Contents.json │ │ │ ├── feedback_closed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── feedback_closed.pdf │ │ │ ├── feedback_confusing.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── feedback_confusing.pdf │ │ │ ├── feedback_map_issue.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── feedback_map_issue.pdf │ │ │ ├── feedback_not_allowed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── feedback_not_allowed.pdf │ │ │ ├── feedback_traffic.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── feedback_traffic.pdf │ │ │ └── feedback_wrong.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── feedback_wrong.pdf │ │ ├── feedback_car_crash.imageset │ │ │ ├── Contents.json │ │ │ └── feedback_car_crash.pdf │ │ ├── feedback_hazard.imageset │ │ │ ├── Contents.json │ │ │ └── feedback_hazard.pdf │ │ ├── feedback_other.imageset │ │ │ ├── Contents.json │ │ │ └── feedback_other.pdf │ │ ├── feedback_road_closed.imageset │ │ │ ├── Contents.json │ │ │ └── feedback_road_closed.pdf │ │ ├── feedback_routing.imageset │ │ │ ├── Contents.json │ │ │ └── feedback_routing.pdf │ │ ├── feedback_turn_not_allowed.imageset │ │ │ ├── Contents.json │ │ │ └── feedback_turn_not_allowed.pdf │ │ ├── location.imageset │ │ │ ├── Contents.json │ │ │ └── location.pdf │ │ ├── minus.imageset │ │ │ ├── Contents.json │ │ │ └── minus.pdf │ │ ├── overview.imageset │ │ │ ├── Contents.json │ │ │ └── overview.pdf │ │ ├── pan-map.imageset │ │ │ ├── Contents.json │ │ │ └── pan-map.png │ │ ├── plus.imageset │ │ │ ├── Contents.json │ │ │ └── plus.pdf │ │ ├── recenter.imageset │ │ │ ├── Contents.json │ │ │ └── recenter.pdf │ │ ├── report_checkmark.imageset │ │ │ ├── Contents.json │ │ │ └── report_checkmark.pdf │ │ ├── reroute-sound.dataset │ │ │ ├── Contents.json │ │ │ └── reroute-sound.mp3 │ │ ├── scroll.imageset │ │ │ ├── Contents.json │ │ │ └── scroll.pdf │ │ ├── search-monocle.imageset │ │ │ ├── Contents.json │ │ │ └── search-monocle.png │ │ ├── star.imageset │ │ │ ├── Contents.json │ │ │ └── star.pdf │ │ ├── triangle.imageset │ │ │ ├── Contents.json │ │ │ └── triangle.pdf │ │ ├── volume_off.imageset │ │ │ ├── Contents.json │ │ │ └── volume_off.pdf │ │ └── volume_up.imageset │ │ │ ├── Contents.json │ │ │ └── volume_up.pdf │ ├── Base.lproj │ │ └── Localizable.strings │ ├── ar.lproj │ │ ├── Localizable.strings │ │ └── Navigation.strings │ ├── bg.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ ├── Localizable.strings │ │ └── Navigation.strings │ ├── da.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── de.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── en.lproj │ │ └── Localizable.stringsdict │ ├── es.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── fa.lproj │ │ └── Navigation.strings │ ├── fr.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── he.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── hu.lproj │ │ ├── Localizable.strings │ │ └── Navigation.strings │ ├── it.lproj │ │ └── Navigation.strings │ ├── ko.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── lt.lproj │ │ └── Navigation.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ ├── Localizable.strings │ │ └── Navigation.strings │ ├── pt-PT.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── ru.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── sl.lproj │ │ └── Navigation.strings │ ├── sv.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── uk.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── vi.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ └── Navigation.strings │ ├── zh-Hans.lproj │ │ ├── Localizable.strings │ │ └── Navigation.strings │ └── zh-Hant.lproj │ │ └── Navigation.strings ├── RouteMapViewController.swift ├── RouteVoiceController.swift ├── StatusView.swift ├── StepsViewController.swift ├── String+LocalizedConstants.swift ├── Style.swift ├── StyleKitMarker.swift ├── StyleManager.swift ├── StyleType.swift ├── Transitioning.swift ├── UICollectionView.swift ├── UIEdgeInsets.swift ├── UIFont.swift ├── UIGestureRecognizer.swift ├── UIImage.swift ├── UIStackView.swift ├── UIView.swift ├── UIViewController.swift ├── UserCourseView.swift ├── VisualInstruction.swift ├── VisualInstructionComponent.swift └── Waypoint.swift ├── MapboxNavigationObjc ├── MBRouteVoiceController.h ├── MBRouteVoiceController.m └── include │ └── MapboxNavigation.h ├── MapboxNavigationTests ├── Assets.xcassets │ ├── 80px-I-280.imageset │ │ ├── 80px-I-280.svg.png │ │ └── Contents.json │ ├── Contents.json │ ├── i-280.imageset │ │ ├── Contents.json │ │ └── i-280@3x.png │ └── us-101.imageset │ │ ├── Contents.json │ │ └── us-101@3x.png ├── Fixtures │ ├── EmptyStyle.json │ ├── route-for-lane-testing.json │ ├── route-with-banner-instructions.json │ ├── route-with-instructions.json │ ├── route-with-lanes.json │ └── route.json └── Sources │ ├── Support │ ├── Constants.swift │ ├── Fixture.swift │ ├── ImageDownloadOperationSpy.swift │ └── ImageLoadingURLProtocolSpy.swift │ └── Tests │ ├── CPMapTemplateTests.swift │ ├── DataCacheTests.swift │ ├── DummyURLSessionDataTask.swift │ ├── ImageCacheTests.swift │ ├── ImageDownloaderTests.swift │ ├── ImageRepositoryTests.swift │ ├── InstructionPresenterTests.swift │ ├── InstructionsBannerViewIntegrationTests.swift │ ├── NavigationMapViewTests.swift │ ├── NavigationViewControllerTests.swift │ ├── StepsViewControllerTests.swift │ ├── StyleManagerTests.swift │ └── XCTestCase.swift ├── Package.resolved ├── Package.swift ├── README.md ├── RELEASE.md ├── TestPlan.xctestplan ├── circle.yml ├── custom-navigation.md ├── docs ├── README.md ├── cover.md ├── guides │ ├── Reduce Memory Usage.md │ ├── Styling the UI.md │ └── Using Map Matching.md ├── img │ ├── navigation.png │ └── view-hierarchy.png ├── jazzy.yml └── theme │ ├── assets │ ├── css │ │ ├── highlight.css.scss │ │ └── jazzy.css.scss │ ├── fonts │ │ ├── opensans-bold.eot │ │ ├── opensans-bold.woff │ │ ├── opensans-regular.eot │ │ └── opensans-regular.woff │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── github.svg │ │ ├── link.svg │ │ ├── mapbox.svg │ │ ├── minus.svg │ │ └── plus.svg │ └── js │ │ ├── jazzy.js │ │ └── jquery.min.js │ └── templates │ ├── doc.mustache │ ├── footer.mustache │ ├── header.mustache │ ├── nav.mustache │ ├── parameter.mustache │ ├── task.mustache │ └── tasks.mustache └── scripts ├── .gitignore ├── convert_string_files.sh ├── document.sh ├── extract_localizable.sh ├── file_conversion.sh └── generate_snapshots.sh /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.github/navigation.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/splash-image-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.github/splash-image-ios.png -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.9 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/maplibre-navigation-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/maplibre-navigation-ios.xcscheme -------------------------------------------------------------------------------- /.tools/git-format-staged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.tools/git-format-staged -------------------------------------------------------------------------------- /.tools/git-format-staged-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.tools/git-format-staged-LICENSE.txt -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/Info.plist -------------------------------------------------------------------------------- /Example/example/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/example/Secrets.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Example/example/Secrets.xcconfig -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MapboxCoreNavigation/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Array.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/BundleAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/BundleAdditions.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/CLLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/CLLocation.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/CLLocationDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/CLLocationDirection.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Constants.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Date.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/DistanceFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/DistanceFormatter.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Feedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Feedback.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Fixture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Fixture.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Locale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Locale.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/MMEEventsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/MMEEventsManager.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/NavigationLocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/NavigationLocationManager.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/NavigationRouteOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/NavigationRouteOptions.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/NavigationSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/NavigationSettings.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/ProcessInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/ProcessInfo.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/ReplayLocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/ReplayLocationManager.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Inform developer an update is available */ 2 | "UPDATE_AVAILABLE" = "iOS를 위한 맵박스 네비게이션 SDK %@ 를 사용할 수 있습니다."; 3 | 4 | -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Inform developer an update is available */ 2 | "UPDATE_AVAILABLE" = "Доступна версия Mapbox Navigation SDK %@ для iOS."; 3 | 4 | -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Inform developer an update is available */ 2 | "UPDATE_AVAILABLE" = "Mapbox Navigation SDK для iOS версії %@ в наявності."; 3 | 4 | -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Inform developer an update is available */ 2 | "UPDATE_AVAILABLE" = "Mapbox Navigation SDK cho iOS mới ra phiên bản %@."; 3 | 4 | -------------------------------------------------------------------------------- /MapboxCoreNavigation/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxCoreNavigation/Route.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Route.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/RouteController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/RouteController.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/RouteControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/RouteControllerDelegate.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/RouteOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/RouteOptions.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/RouteProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/RouteProgress.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/RouteStep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/RouteStep.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Router.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/ScreenCapture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/ScreenCapture.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/Sequence.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/SessionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/SessionState.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/SimulatedLocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/SimulatedLocationManager.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/String.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/TunnelIntersectionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/TunnelIntersectionManager.swift -------------------------------------------------------------------------------- /MapboxCoreNavigation/UIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigation/UIDevice.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationObjc/MBNavigationSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationObjc/MBNavigationSettings.h -------------------------------------------------------------------------------- /MapboxCoreNavigationObjc/MBNavigationSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationObjc/MBNavigationSettings.m -------------------------------------------------------------------------------- /MapboxCoreNavigationObjc/MBRouteController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationObjc/MBRouteController.h -------------------------------------------------------------------------------- /MapboxCoreNavigationObjc/MBRouteController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationObjc/MBRouteController.m -------------------------------------------------------------------------------- /MapboxCoreNavigationObjc/include/MapboxCoreNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationObjc/include/MapboxCoreNavigation.h -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/DistanceFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/DistanceFormatterTests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Heading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Heading.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/LocationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/LocationTests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/MD5Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/MD5Tests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/MapboxCoreNavigationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/MapboxCoreNavigationTests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/NavigationLocationManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/NavigationLocationManagerTests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Bigger-Detour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Bigger-Detour.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Normal-With-Big-Trafficjam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Normal-With-Big-Trafficjam.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Normal.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Slight-Difference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/A12-To-Veenendaal-Slight-Difference.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/Info.plist -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/Nijmegen-Arnhem-Veenendaal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/Nijmegen-Arnhem-Veenendaal.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/Nijmegen-Bemmel-Veenendaal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/Nijmegen-Bemmel-Veenendaal.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/Nijmegen-Bemmel-Veenendaal2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/Nijmegen-Bemmel-Veenendaal2.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/Wolfheze-Veenendaal-Normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/Wolfheze-Veenendaal-Normal.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/Wolfheze-Veenendaal-Small-Detour-At-End.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/Wolfheze-Veenendaal-Small-Detour-At-End.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/dc-line.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/dc-line.geojson -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/md5_crazy_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/md5_crazy_strings.txt -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/route.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/routeWithInstructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/routeWithInstructions.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/routeWithTunnels_9thStreetDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/routeWithTunnels_9thStreetDC.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/straight-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/straight-line.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/tunnel.json -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Resources/tunnel.route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Resources/tunnel.route -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/RouteControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/RouteControllerTests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/RouteProgressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/RouteProgressTests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/StringTests.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Support/DirectionsSpy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Support/DirectionsSpy.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Support/DummyURLSessionDataTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Support/DummyURLSessionDataTask.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/Support/RouteControllerDelegateSpy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/Support/RouteControllerDelegateSpy.swift -------------------------------------------------------------------------------- /MapboxCoreNavigationTests/TunnelIntersectionManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxCoreNavigationTests/TunnelIntersectionManagerTests.swift -------------------------------------------------------------------------------- /MapboxNavigation/BottomBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/BottomBannerView.swift -------------------------------------------------------------------------------- /MapboxNavigation/BottomBannerViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/BottomBannerViewLayout.swift -------------------------------------------------------------------------------- /MapboxNavigation/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Bundle.swift -------------------------------------------------------------------------------- /MapboxNavigation/CGPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CGPoint.swift -------------------------------------------------------------------------------- /MapboxNavigation/CGSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CGSize.swift -------------------------------------------------------------------------------- /MapboxNavigation/CPMapTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CPMapTemplate.swift -------------------------------------------------------------------------------- /MapboxNavigation/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Cache.swift -------------------------------------------------------------------------------- /MapboxNavigation/CarPlayManager+Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CarPlayManager+Search.swift -------------------------------------------------------------------------------- /MapboxNavigation/CarPlayManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CarPlayManager.swift -------------------------------------------------------------------------------- /MapboxNavigation/CarPlayMapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CarPlayMapViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/CarPlayNavigationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CarPlayNavigationViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/ConfigManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ConfigManager.swift -------------------------------------------------------------------------------- /MapboxNavigation/CongestionLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/CongestionLevel.swift -------------------------------------------------------------------------------- /MapboxNavigation/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Constants.swift -------------------------------------------------------------------------------- /MapboxNavigation/DashedLineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/DashedLineView.swift -------------------------------------------------------------------------------- /MapboxNavigation/DataCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/DataCache.swift -------------------------------------------------------------------------------- /MapboxNavigation/DayStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/DayStyle.swift -------------------------------------------------------------------------------- /MapboxNavigation/DialogViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/DialogViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Dictionary.swift -------------------------------------------------------------------------------- /MapboxNavigation/EndOfRouteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/EndOfRouteViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Error.swift -------------------------------------------------------------------------------- /MapboxNavigation/ErrorCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ErrorCode.swift -------------------------------------------------------------------------------- /MapboxNavigation/ExitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ExitView.swift -------------------------------------------------------------------------------- /MapboxNavigation/FeedbackCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/FeedbackCollectionViewCell.swift -------------------------------------------------------------------------------- /MapboxNavigation/FeedbackItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/FeedbackItem.swift -------------------------------------------------------------------------------- /MapboxNavigation/GenericRouteShield.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/GenericRouteShield.swift -------------------------------------------------------------------------------- /MapboxNavigation/HighwayShield.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/HighwayShield.swift -------------------------------------------------------------------------------- /MapboxNavigation/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ImageCache.swift -------------------------------------------------------------------------------- /MapboxNavigation/ImageDownload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ImageDownload.swift -------------------------------------------------------------------------------- /MapboxNavigation/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ImageDownloader.swift -------------------------------------------------------------------------------- /MapboxNavigation/ImageRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ImageRepository.swift -------------------------------------------------------------------------------- /MapboxNavigation/InstructionLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/InstructionLabel.swift -------------------------------------------------------------------------------- /MapboxNavigation/InstructionPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/InstructionPresenter.swift -------------------------------------------------------------------------------- /MapboxNavigation/InstructionsBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/InstructionsBannerView.swift -------------------------------------------------------------------------------- /MapboxNavigation/InstructionsBannerViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/InstructionsBannerViewLayout.swift -------------------------------------------------------------------------------- /MapboxNavigation/LaneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/LaneView.swift -------------------------------------------------------------------------------- /MapboxNavigation/LanesStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/LanesStyleKit.swift -------------------------------------------------------------------------------- /MapboxNavigation/LanesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/LanesView.swift -------------------------------------------------------------------------------- /MapboxNavigation/Locale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Locale.swift -------------------------------------------------------------------------------- /MapboxNavigation/MLNMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/MLNMapView.swift -------------------------------------------------------------------------------- /MapboxNavigation/MLNVectorTileSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/MLNVectorTileSource.swift -------------------------------------------------------------------------------- /MapboxNavigation/ManeuverDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ManeuverDirection.swift -------------------------------------------------------------------------------- /MapboxNavigation/ManeuverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ManeuverView.swift -------------------------------------------------------------------------------- /MapboxNavigation/ManeuversStyleKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/ManeuversStyleKit.swift -------------------------------------------------------------------------------- /MapboxNavigation/NSAttributedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/NSAttributedString.swift -------------------------------------------------------------------------------- /MapboxNavigation/NavigationMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/NavigationMapView.swift -------------------------------------------------------------------------------- /MapboxNavigation/NavigationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/NavigationView.swift -------------------------------------------------------------------------------- /MapboxNavigation/NavigationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/NavigationViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/NavigationViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/NavigationViewLayout.swift -------------------------------------------------------------------------------- /MapboxNavigation/NextBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/NextBannerView.swift -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_close.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_close.imageset/carplay_close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_close.imageset/carplay_close.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_feedback.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_feedback.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_feedback.imageset/carplay_feedback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_feedback.imageset/carplay_feedback.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_locate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_locate.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_locate.imageset/carplay_locate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_locate.imageset/carplay_locate.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_minus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_minus.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_minus.imageset/carplay_minus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_minus.imageset/carplay_minus.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_overview.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_overview.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_overview.imageset/carplay_overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_overview.imageset/carplay_overview.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_pan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_pan.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_pan.imageset/carplay_pan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_pan.imageset/carplay_pan.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_plus.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_plus.imageset/carplay_plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_plus.imageset/carplay_plus.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_search.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_search.imageset/carplay_search.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_search.imageset/carplay_search.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_off.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_off.imageset/carplay_volume_off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_off.imageset/carplay_volume_off.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_on.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_on.imageset/volume_on_btn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/carplay/carplay_volume_on.imageset/volume_on_btn.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/close.imageset/close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/close.imageset/close.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/exit-left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/exit-left.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/exit-left.imageset/exit-left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/exit-left.imageset/exit-left.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/exit-right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/exit-right.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/exit-right.imageset/exit-right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/exit-right.imageset/exit-right.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/road-closed-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/road-closed-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/road-closed-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/road-closed-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/road-closed-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-closed-road.imageset/road-closed-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/confusing-directions-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/confusing-directions-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/confusing-directions-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/confusing-directions-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/confusing-directions-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-confusing-directions.imageset/confusing-directions-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/exit-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/exit-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/exit-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/exit-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/exit-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-exit.imageset/exit-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/gps-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/gps-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/gps-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/gps-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/gps-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-gps.imageset/gps-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/map-error-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/map-error-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/map-error-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/map-error-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/map-error-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-map-error.imageset/map-error-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/road-closed-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/road-closed-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/road-closed-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/road-closed-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/road-closed-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-missing-road.imageset/road-closed-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/no-turn-allowed-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/no-turn-allowed-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/no-turn-allowed-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/no-turn-allowed-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/no-turn-allowed-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-no-turn-allowed.imageset/no-turn-allowed-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/wrong-directions-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/wrong-directions-1x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/wrong-directions-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/wrong-directions-2x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/wrong-directions-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback-wrong-directions.imageset/wrong-directions-3x.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback.imageset/feedback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback.imageset/feedback.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_closed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_closed.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_closed.imageset/feedback_closed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_closed.imageset/feedback_closed.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_confusing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_confusing.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_confusing.imageset/feedback_confusing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_confusing.imageset/feedback_confusing.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_map_issue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_map_issue.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_map_issue.imageset/feedback_map_issue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_map_issue.imageset/feedback_map_issue.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_not_allowed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_not_allowed.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_not_allowed.imageset/feedback_not_allowed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_not_allowed.imageset/feedback_not_allowed.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_traffic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_traffic.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_traffic.imageset/feedback_traffic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_traffic.imageset/feedback_traffic.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_wrong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_wrong.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_wrong.imageset/feedback_wrong.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback/feedback_wrong.imageset/feedback_wrong.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_car_crash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_car_crash.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_car_crash.imageset/feedback_car_crash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_car_crash.imageset/feedback_car_crash.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_hazard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_hazard.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_hazard.imageset/feedback_hazard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_hazard.imageset/feedback_hazard.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_other.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_other.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_other.imageset/feedback_other.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_other.imageset/feedback_other.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_road_closed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_road_closed.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_road_closed.imageset/feedback_road_closed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_road_closed.imageset/feedback_road_closed.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_routing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_routing.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_routing.imageset/feedback_routing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_routing.imageset/feedback_routing.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_turn_not_allowed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_turn_not_allowed.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/feedback_turn_not_allowed.imageset/feedback_turn_not_allowed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/feedback_turn_not_allowed.imageset/feedback_turn_not_allowed.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/location.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/location.imageset/location.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/location.imageset/location.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/minus.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/minus.imageset/minus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/minus.imageset/minus.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/overview.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/overview.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/overview.imageset/overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/overview.imageset/overview.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/pan-map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/pan-map.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/pan-map.imageset/pan-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/pan-map.imageset/pan-map.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/plus.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/plus.imageset/plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/plus.imageset/plus.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/recenter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/recenter.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/recenter.imageset/recenter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/recenter.imageset/recenter.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/report_checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/report_checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/report_checkmark.imageset/report_checkmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/report_checkmark.imageset/report_checkmark.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/reroute-sound.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/reroute-sound.dataset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/reroute-sound.dataset/reroute-sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/reroute-sound.dataset/reroute-sound.mp3 -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/scroll.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/scroll.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/scroll.imageset/scroll.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/scroll.imageset/scroll.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/search-monocle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/search-monocle.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/search-monocle.imageset/search-monocle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/search-monocle.imageset/search-monocle.png -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/star.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/star.imageset/star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/star.imageset/star.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/triangle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/triangle.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/triangle.imageset/triangle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/triangle.imageset/triangle.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/volume_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/volume_off.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/volume_off.imageset/volume_off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/volume_off.imageset/volume_off.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/volume_up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/volume_up.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Assets.xcassets/volume_up.imageset/volume_up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Assets.xcassets/volume_up.imageset/volume_up.pdf -------------------------------------------------------------------------------- /MapboxNavigation/Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ar.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ar.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ca.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ca.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/da.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/da.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/da.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/da.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/de.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/de.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/de.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/de.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/es.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/es.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/es.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/es.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/fa.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/fa.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/fr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/fr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/fr.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/fr.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/he.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/he.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/he.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/he.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/hu.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/hu.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/it.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/it.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ko.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ko.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ko.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ko.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/lt.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/lt.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/pt-BR.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/pt-BR.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/pt-PT.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/pt-PT.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/pt-PT.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/pt-PT.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ru.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ru.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/ru.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/ru.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/sl.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/sl.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/sv.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/sv.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/sv.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/sv.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/uk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/uk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/uk.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/uk.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/vi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/vi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /MapboxNavigation/Resources/vi.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/vi.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/zh-Hans.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/zh-Hans.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/Resources/zh-Hant.lproj/Navigation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Resources/zh-Hant.lproj/Navigation.strings -------------------------------------------------------------------------------- /MapboxNavigation/RouteMapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/RouteMapViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/RouteVoiceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/RouteVoiceController.swift -------------------------------------------------------------------------------- /MapboxNavigation/StatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/StatusView.swift -------------------------------------------------------------------------------- /MapboxNavigation/StepsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/StepsViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/String+LocalizedConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/String+LocalizedConstants.swift -------------------------------------------------------------------------------- /MapboxNavigation/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Style.swift -------------------------------------------------------------------------------- /MapboxNavigation/StyleKitMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/StyleKitMarker.swift -------------------------------------------------------------------------------- /MapboxNavigation/StyleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/StyleManager.swift -------------------------------------------------------------------------------- /MapboxNavigation/StyleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/StyleType.swift -------------------------------------------------------------------------------- /MapboxNavigation/Transitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Transitioning.swift -------------------------------------------------------------------------------- /MapboxNavigation/UICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UICollectionView.swift -------------------------------------------------------------------------------- /MapboxNavigation/UIEdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UIEdgeInsets.swift -------------------------------------------------------------------------------- /MapboxNavigation/UIFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UIFont.swift -------------------------------------------------------------------------------- /MapboxNavigation/UIGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UIGestureRecognizer.swift -------------------------------------------------------------------------------- /MapboxNavigation/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UIImage.swift -------------------------------------------------------------------------------- /MapboxNavigation/UIStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UIStackView.swift -------------------------------------------------------------------------------- /MapboxNavigation/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UIView.swift -------------------------------------------------------------------------------- /MapboxNavigation/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UIViewController.swift -------------------------------------------------------------------------------- /MapboxNavigation/UserCourseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/UserCourseView.swift -------------------------------------------------------------------------------- /MapboxNavigation/VisualInstruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/VisualInstruction.swift -------------------------------------------------------------------------------- /MapboxNavigation/VisualInstructionComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/VisualInstructionComponent.swift -------------------------------------------------------------------------------- /MapboxNavigation/Waypoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigation/Waypoint.swift -------------------------------------------------------------------------------- /MapboxNavigationObjc/MBRouteVoiceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationObjc/MBRouteVoiceController.h -------------------------------------------------------------------------------- /MapboxNavigationObjc/MBRouteVoiceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationObjc/MBRouteVoiceController.m -------------------------------------------------------------------------------- /MapboxNavigationObjc/include/MapboxNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationObjc/include/MapboxNavigation.h -------------------------------------------------------------------------------- /MapboxNavigationTests/Assets.xcassets/80px-I-280.imageset/80px-I-280.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Assets.xcassets/80px-I-280.imageset/80px-I-280.svg.png -------------------------------------------------------------------------------- /MapboxNavigationTests/Assets.xcassets/80px-I-280.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Assets.xcassets/80px-I-280.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Assets.xcassets/i-280.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Assets.xcassets/i-280.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Assets.xcassets/i-280.imageset/i-280@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Assets.xcassets/i-280.imageset/i-280@3x.png -------------------------------------------------------------------------------- /MapboxNavigationTests/Assets.xcassets/us-101.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Assets.xcassets/us-101.imageset/Contents.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Assets.xcassets/us-101.imageset/us-101@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Assets.xcassets/us-101.imageset/us-101@3x.png -------------------------------------------------------------------------------- /MapboxNavigationTests/Fixtures/EmptyStyle.json: -------------------------------------------------------------------------------- 1 | {"version":8,"sources":{},"layers":[]} 2 | -------------------------------------------------------------------------------- /MapboxNavigationTests/Fixtures/route-for-lane-testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Fixtures/route-for-lane-testing.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Fixtures/route-with-banner-instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Fixtures/route-with-banner-instructions.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Fixtures/route-with-instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Fixtures/route-with-instructions.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Fixtures/route-with-lanes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Fixtures/route-with-lanes.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Fixtures/route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Fixtures/route.json -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Support/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Support/Constants.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Support/Fixture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Support/Fixture.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Support/ImageDownloadOperationSpy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Support/ImageDownloadOperationSpy.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Support/ImageLoadingURLProtocolSpy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Support/ImageLoadingURLProtocolSpy.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/CPMapTemplateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/CPMapTemplateTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/DataCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/DataCacheTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/DummyURLSessionDataTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/DummyURLSessionDataTask.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/ImageCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/ImageCacheTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/ImageDownloaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/ImageDownloaderTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/ImageRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/ImageRepositoryTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/InstructionPresenterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/InstructionPresenterTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/InstructionsBannerViewIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/InstructionsBannerViewIntegrationTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/NavigationMapViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/NavigationMapViewTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/NavigationViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/NavigationViewControllerTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/StepsViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/StepsViewControllerTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/StyleManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/StyleManagerTests.swift -------------------------------------------------------------------------------- /MapboxNavigationTests/Sources/Tests/XCTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/MapboxNavigationTests/Sources/Tests/XCTestCase.swift -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/RELEASE.md -------------------------------------------------------------------------------- /TestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/TestPlan.xctestplan -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/circle.yml -------------------------------------------------------------------------------- /custom-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/custom-navigation.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/cover.md -------------------------------------------------------------------------------- /docs/guides/Reduce Memory Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/guides/Reduce Memory Usage.md -------------------------------------------------------------------------------- /docs/guides/Styling the UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/guides/Styling the UI.md -------------------------------------------------------------------------------- /docs/guides/Using Map Matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/guides/Using Map Matching.md -------------------------------------------------------------------------------- /docs/img/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/img/navigation.png -------------------------------------------------------------------------------- /docs/img/view-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/img/view-hierarchy.png -------------------------------------------------------------------------------- /docs/jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/jazzy.yml -------------------------------------------------------------------------------- /docs/theme/assets/css/highlight.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/css/highlight.css.scss -------------------------------------------------------------------------------- /docs/theme/assets/css/jazzy.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/css/jazzy.css.scss -------------------------------------------------------------------------------- /docs/theme/assets/fonts/opensans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/fonts/opensans-bold.eot -------------------------------------------------------------------------------- /docs/theme/assets/fonts/opensans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/fonts/opensans-bold.woff -------------------------------------------------------------------------------- /docs/theme/assets/fonts/opensans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/fonts/opensans-regular.eot -------------------------------------------------------------------------------- /docs/theme/assets/fonts/opensans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/fonts/opensans-regular.woff -------------------------------------------------------------------------------- /docs/theme/assets/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/img/carat.png -------------------------------------------------------------------------------- /docs/theme/assets/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/img/dash.png -------------------------------------------------------------------------------- /docs/theme/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/img/github.svg -------------------------------------------------------------------------------- /docs/theme/assets/img/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/img/link.svg -------------------------------------------------------------------------------- /docs/theme/assets/img/mapbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/img/mapbox.svg -------------------------------------------------------------------------------- /docs/theme/assets/img/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/img/minus.svg -------------------------------------------------------------------------------- /docs/theme/assets/img/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/img/plus.svg -------------------------------------------------------------------------------- /docs/theme/assets/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/js/jazzy.js -------------------------------------------------------------------------------- /docs/theme/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/assets/js/jquery.min.js -------------------------------------------------------------------------------- /docs/theme/templates/doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/templates/doc.mustache -------------------------------------------------------------------------------- /docs/theme/templates/footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/templates/footer.mustache -------------------------------------------------------------------------------- /docs/theme/templates/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/templates/header.mustache -------------------------------------------------------------------------------- /docs/theme/templates/nav.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/templates/nav.mustache -------------------------------------------------------------------------------- /docs/theme/templates/parameter.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/templates/parameter.mustache -------------------------------------------------------------------------------- /docs/theme/templates/task.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/templates/task.mustache -------------------------------------------------------------------------------- /docs/theme/templates/tasks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/docs/theme/templates/tasks.mustache -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | Carthage/ 2 | -------------------------------------------------------------------------------- /scripts/convert_string_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/scripts/convert_string_files.sh -------------------------------------------------------------------------------- /scripts/document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/scripts/document.sh -------------------------------------------------------------------------------- /scripts/extract_localizable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/scripts/extract_localizable.sh -------------------------------------------------------------------------------- /scripts/file_conversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/scripts/file_conversion.sh -------------------------------------------------------------------------------- /scripts/generate_snapshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maplibre/maplibre-navigation-ios/HEAD/scripts/generate_snapshots.sh --------------------------------------------------------------------------------