├── .circleci └── config.yml ├── .fastlane ├── Appfile ├── Fastfile └── Matchfile ├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── dependabot.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── .pubignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .editorconfig ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── mapbox │ └── maps │ └── mapbox_maps │ ├── Accessors.kt │ ├── AnimationController.kt │ ├── AttributionController.kt │ ├── CameraController.kt │ ├── CompassController.kt │ ├── EventHandler.kt │ ├── Extentions.kt │ ├── GestureController.kt │ ├── InteractionsController.kt │ ├── LocationComponentController.kt │ ├── LoggingController.kt │ ├── LogoController.kt │ ├── MapInterfaceController.kt │ ├── MapProjectionController.kt │ ├── MapRecorderController.kt │ ├── MapboxMapController.kt │ ├── MapboxMapFactory.kt │ ├── MapboxMapsPlugin.kt │ ├── MapboxOptionsController.kt │ ├── PerformanceStatisticsController.kt │ ├── ScaleBarController.kt │ ├── StyleController.kt │ ├── ViewportController.kt │ ├── annotation │ ├── AnnotationController.kt │ ├── CircleAnnotationController.kt │ ├── CircleAnnotationEnumsExtensions.kt │ ├── ControllerDelegate.kt │ ├── PointAnnotationController.kt │ ├── PointAnnotationEnumsExtensions.kt │ ├── PolygonAnnotationController.kt │ ├── PolygonAnnotationEnumsExtensions.kt │ ├── PolylineAnnotationController.kt │ └── PolylineAnnotationEnumsExtensions.kt │ ├── http │ └── CustomHttpServiceInterceptor.kt │ ├── mapping │ ├── AttributionMappings.kt │ ├── CompassMappings.kt │ ├── GesturesMappings.kt │ ├── LocationComponentMappings.kt │ ├── LogoMappings.kt │ ├── OrnamentPositionMapping.kt │ ├── ScaleBarMappings.kt │ └── turf │ │ └── TurfAdapters.kt │ ├── offline │ ├── OfflineController.kt │ ├── OfflineMapInstanceManager.kt │ ├── OfflineSwitch.kt │ └── TileStoreController.kt │ ├── pigeons │ ├── CircleAnnotationMessenger.kt │ ├── GestureListeners.kt │ ├── LogBackend.kt │ ├── MapInterfaces.kt │ ├── MapRecorderMessenger.kt │ ├── OfflineMessenger.kt │ ├── PerformaceStatistics.kt │ ├── PointAnnotationMessenger.kt │ ├── PolygonAnnotationMessenger.kt │ ├── PolylineAnnotationMessenger.kt │ ├── Settings.kt │ ├── SnapshotterMessenger.kt │ └── ViewportInternal.kt │ └── snapshotter │ ├── SnapshotterController.kt │ └── SnapshotterInstanceManager.kt ├── example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── mapbox │ │ │ │ └── maps │ │ │ │ └── mapbox_maps_example │ │ │ │ └── MainActivityTest.java │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── mapbox │ │ │ │ │ └── maps │ │ │ │ │ └── mapbox_maps_example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ ├── ktlint.gradle │ │ ├── lint.gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ └── settings.gradle ├── assets │ ├── cluster │ │ ├── cluster_count_layer.json │ │ ├── cluster_layer.json │ │ ├── cluster_source.json │ │ └── unclustered_point_layer.json │ ├── featuresetsStyle.json │ ├── fragment_realestate_NY.json │ ├── from_crema_to_council_crest.geojson │ ├── geojson_source_large_points.json │ ├── layer.json │ ├── miami_beach.png │ ├── point_layer.json │ ├── raster_array_layers.json │ ├── sf_airport_route.geojson │ ├── source.json │ ├── sportcar.glb │ ├── style.json │ └── symbols │ │ ├── 2.0x │ │ └── custom-icon.png │ │ ├── 3.0x │ │ └── custom-icon.png │ │ └── custom-icon.png ├── integration_test │ ├── all_test.dart │ ├── animation_test.dart │ ├── annotations │ │ ├── circle_annotation_manager_test.dart │ │ ├── circle_annotation_test.dart │ │ ├── point_annotation_manager_test.dart │ │ ├── point_annotation_test.dart │ │ ├── polygon_annotation_manager_test.dart │ │ ├── polygon_annotation_test.dart │ │ ├── polyline_annotation_manager_test.dart │ │ └── polyline_annotation_test.dart │ ├── attribution_test.dart │ ├── camera_test.dart │ ├── compass_test.dart │ ├── empty_map_widget.dart │ ├── gestures_test.dart │ ├── interactive_features_test.dart │ ├── location_test.dart │ ├── logo_test.dart │ ├── map_interface_test.dart │ ├── map_recorder_test.dart │ ├── offline_test.dart │ ├── projection_test.dart │ ├── scale_bar_test.dart │ ├── snapshotter │ │ └── snapshotter_test.dart │ ├── style │ │ ├── layer │ │ │ ├── background_layer_test.dart │ │ │ ├── circle_layer_test.dart │ │ │ ├── clip_layer_test.dart │ │ │ ├── fill_extrusion_layer_test.dart │ │ │ ├── fill_layer_test.dart │ │ │ ├── heatmap_layer_test.dart │ │ │ ├── hillshade_layer_test.dart │ │ │ ├── line_layer_test.dart │ │ │ ├── location_indicator_layer_test.dart │ │ │ ├── model_layer_test.dart │ │ │ ├── raster_layer_test.dart │ │ │ ├── raster_particle_layer_test.dart │ │ │ ├── sky_layer_test.dart │ │ │ ├── slot_layer_test.dart │ │ │ └── symbol_layer_test.dart │ │ ├── source │ │ │ ├── geojson_source_test.dart │ │ │ ├── image_source_test.dart │ │ │ ├── raster_source_test.dart │ │ │ ├── rasterarray_source_test.dart │ │ │ ├── rasterdem_source_test.dart │ │ │ └── vector_source_test.dart │ │ └── style_test.dart │ ├── utils │ │ └── list_close_to_matcher.dart │ └── viewport_test.dart ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.m ├── lib │ ├── animated_route_example.dart │ ├── animation_example.dart │ ├── camera_example.dart │ ├── circle_annotations_example.dart │ ├── cluster_example.dart │ ├── custom_header_example.dart │ ├── custom_vector_icons_example.dart │ ├── debug_options_example.dart │ ├── draggable-annotations-example.dart │ ├── edit_polygon_example.dart │ ├── example.dart │ ├── full_map_example.dart │ ├── geojson_line_example.dart │ ├── gestures_example.dart │ ├── image_source_example.dart │ ├── location_example.dart │ ├── main.dart │ ├── map_interface_example.dart │ ├── map_recorder_example.dart │ ├── model_layer_example.dart │ ├── model_layer_interactions_example.dart │ ├── offline_map_example.dart │ ├── ornaments_example.dart │ ├── point_annotations_example.dart │ ├── polygon_annotations_example.dart │ ├── polyline_annotations_example.dart │ ├── projection_example.dart │ ├── simple_map_example.dart │ ├── snapshotter_example.dart │ ├── spinning_globe_example.dart │ ├── standard_style_import_example.dart │ ├── standard_style_interactions_example.dart │ ├── style_example.dart │ ├── tile_json_example.dart │ ├── traffic_layer_example.dart │ ├── traffic_route_line_example.dart │ ├── utils.dart │ ├── vector_tile_source_example.dart │ └── viewport_example.dart ├── pubspec.lock ├── pubspec.yaml └── test_driver │ └── integration_test.dart ├── ios ├── .gitignore ├── mapbox_maps_flutter.podspec └── mapbox_maps_flutter │ ├── .swiftlint.yml │ ├── Package.resolved │ ├── Package.swift │ └── Sources │ └── mapbox_maps_flutter │ └── Classes │ ├── AnimationController.swift │ ├── Annotations │ ├── AnnotationController.swift │ ├── BaseAnnotationMessenger.swift │ ├── CircleAnnotationController.swift │ ├── PointAnnotationController.swift │ ├── PolygonAnnotationController.swift │ └── PolylineAnnotationController.swift │ ├── AnyFlutterStreamHandler.swift │ ├── AttributionController.swift │ ├── CameraController.swift │ ├── CompassController.swift │ ├── CustomHttpServiceInterceptor.swift │ ├── EnumsMapping.swift │ ├── EventHandler.swift │ ├── Extensions.swift │ ├── Generated │ ├── CircleAnnotationMessenger.swift │ ├── GestureListeners.swift │ ├── LogBackend.swift │ ├── MapInterfaces.swift │ ├── MapRecorderMessenger.swift │ ├── OfflineMessenger.swift │ ├── PerformaceStatistics.swift │ ├── PointAnnotationMessenger.swift │ ├── PolygonAnnotationMessenger.swift │ ├── PolylineAnnotationMessenger.swift │ ├── Settings.swift │ ├── SnapshotterMessenger.swift │ └── ViewportInternal.swift │ ├── GesturesController.swift │ ├── InteractionsController.swift │ ├── LocationController.swift │ ├── LoggingController.swift │ ├── LogoController.swift │ ├── MapEvents+JSON.swift │ ├── MapInterfaceController.swift │ ├── MapProjectionController.swift │ ├── MapRecorderController.swift │ ├── MapboxMapController.swift │ ├── MapboxMapFactory.swift │ ├── MapboxMapsPlugin.swift │ ├── MapboxOptionsController.swift │ ├── Offline │ ├── OfflineController.swift │ ├── OfflineMapInstanceManager.swift │ └── TileStoreController.swift │ ├── PerformanceStatisticsController.swift │ ├── ScalebarController.swift │ ├── Snapshotter │ ├── SnapshotterController.swift │ └── SnapshotterInstanceManager.swift │ ├── StyleController.swift │ ├── StyleLights.swift │ ├── TurfAdapters.swift │ ├── Viewport │ ├── States.swift │ ├── Transitions.swift │ └── ViewportController.swift │ └── mapbox_maps_flutter.h ├── lib ├── mapbox_maps_flutter.dart └── src │ ├── annotation │ ├── annotation_manager.dart │ ├── circle_annotation_manager.dart │ ├── point_annotation_manager.dart │ ├── polygon_annotation_manager.dart │ └── polyline_annotation_manager.dart │ ├── callbacks.dart │ ├── cancelable.dart │ ├── deprecated.dart │ ├── events.dart │ ├── extensions.dart │ ├── http │ └── http_service.dart │ ├── location_settings.dart │ ├── log_configuration.dart │ ├── map_events.dart │ ├── map_recorder.dart │ ├── map_widget.dart │ ├── mapbox_map.dart │ ├── mapbox_maps_options.dart │ ├── mapbox_maps_platform.dart │ ├── offline │ ├── offline_manager.dart │ ├── offline_messenger.dart │ ├── offline_switch.dart │ └── tile_store.dart │ ├── package_info.dart │ ├── pigeons │ ├── circle_annotation_messenger.dart │ ├── gesture_listeners.dart │ ├── log_backend.dart │ ├── map_interfaces.dart │ ├── map_recorder_messenger.dart │ ├── performace_statistics.dart │ ├── point_annotation_messenger.dart │ ├── polygon_annotation_messenger.dart │ ├── polyline_annotation_messenger.dart │ └── settings.dart │ ├── snapshotter │ ├── snapshotter.dart │ └── snapshotter_messenger.dart │ ├── style │ ├── interactive_features │ │ ├── interactive_features.dart │ │ ├── standard_buildings.dart │ │ ├── standard_place_labels.dart │ │ └── standard_poi.dart │ ├── layer │ │ ├── background_layer.dart │ │ ├── circle_layer.dart │ │ ├── clip_layer.dart │ │ ├── fill_extrusion_layer.dart │ │ ├── fill_layer.dart │ │ ├── heatmap_layer.dart │ │ ├── hillshade_layer.dart │ │ ├── line_layer.dart │ │ ├── location_indicator_layer.dart │ │ ├── model_layer.dart │ │ ├── raster_layer.dart │ │ ├── raster_particle_layer.dart │ │ ├── sky_layer.dart │ │ ├── slot_layer.dart │ │ └── symbol_layer.dart │ ├── mapbox_styles.dart │ ├── source │ │ ├── geojson_source.dart │ │ ├── image_source.dart │ │ ├── raster_source.dart │ │ ├── rasterarray_source.dart │ │ ├── rasterdem_source.dart │ │ └── vector_source.dart │ └── style.dart │ ├── turf_adapters.dart │ ├── utils.dart │ └── viewport │ ├── state_viewport_extension.dart │ ├── states │ ├── camera_viewport_state.dart │ ├── follow_puck_viewport_state.dart │ ├── idle_viewport_state.dart │ ├── overview_viewport_state.dart │ ├── style_default_viewport_state.dart │ └── viewport_state.dart │ ├── transitions │ ├── default_viewport_transition.dart │ ├── easing_viewport_transition.dart │ ├── fly_viewport_transition.dart │ └── viewport_transition.dart │ └── viewport_internal.dart ├── pubspec.yaml ├── scripts ├── check-format.sh ├── check_api_breakage.sh ├── check_test_suite.dart ├── license.sh └── update-version.sh └── test └── events_test.dart /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.fastlane/Appfile -------------------------------------------------------------------------------- /.fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.fastlane/Fastfile -------------------------------------------------------------------------------- /.fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.fastlane/Matchfile -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mapbox/maps-flutter 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.metadata -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/.pubignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/.editorconfig -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'mapbox_maps' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/Accessors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/Accessors.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/AnimationController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/AnimationController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/AttributionController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/AttributionController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/CameraController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/CameraController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/CompassController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/CompassController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/EventHandler.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/Extentions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/Extentions.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/GestureController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/GestureController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/InteractionsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/InteractionsController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/LocationComponentController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/LocationComponentController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/LoggingController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/LoggingController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/LogoController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/LogoController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapInterfaceController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapInterfaceController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapProjectionController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapProjectionController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapRecorderController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapRecorderController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxMapController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxMapController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxMapFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxMapFactory.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxMapsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxMapsPlugin.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxOptionsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/MapboxOptionsController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/PerformanceStatisticsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/PerformanceStatisticsController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/ScaleBarController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/ScaleBarController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/StyleController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/StyleController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/ViewportController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/ViewportController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/AnnotationController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/AnnotationController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/CircleAnnotationController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/CircleAnnotationController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/CircleAnnotationEnumsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/CircleAnnotationEnumsExtensions.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/ControllerDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/ControllerDelegate.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PointAnnotationController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PointAnnotationController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PointAnnotationEnumsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PointAnnotationEnumsExtensions.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolygonAnnotationController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolygonAnnotationController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolygonAnnotationEnumsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolygonAnnotationEnumsExtensions.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolylineAnnotationController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolylineAnnotationController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolylineAnnotationEnumsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolylineAnnotationEnumsExtensions.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/http/CustomHttpServiceInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/http/CustomHttpServiceInterceptor.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/AttributionMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/AttributionMappings.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/CompassMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/CompassMappings.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/GesturesMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/GesturesMappings.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/LocationComponentMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/LocationComponentMappings.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/LogoMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/LogoMappings.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/OrnamentPositionMapping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/OrnamentPositionMapping.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/ScaleBarMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/ScaleBarMappings.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/turf/TurfAdapters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/mapping/turf/TurfAdapters.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/OfflineController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/OfflineController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/OfflineMapInstanceManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/OfflineMapInstanceManager.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/OfflineSwitch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/OfflineSwitch.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/TileStoreController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/offline/TileStoreController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/CircleAnnotationMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/CircleAnnotationMessenger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/GestureListeners.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/GestureListeners.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/LogBackend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/LogBackend.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/MapInterfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/MapInterfaces.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/MapRecorderMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/MapRecorderMessenger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/OfflineMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/OfflineMessenger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PerformaceStatistics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PerformaceStatistics.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PointAnnotationMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PointAnnotationMessenger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PolygonAnnotationMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PolygonAnnotationMessenger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PolylineAnnotationMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PolylineAnnotationMessenger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/Settings.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/SnapshotterMessenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/SnapshotterMessenger.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/ViewportInternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/ViewportInternal.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/snapshotter/SnapshotterController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/snapshotter/SnapshotterController.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/mapbox/maps/mapbox_maps/snapshotter/SnapshotterInstanceManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/android/src/main/kotlin/com/mapbox/maps/mapbox_maps/snapshotter/SnapshotterInstanceManager.kt -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/androidTest/java/com/mapbox/maps/mapbox_maps_example/MainActivityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/androidTest/java/com/mapbox/maps/mapbox_maps_example/MainActivityTest.java -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/mapbox/maps/mapbox_maps_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/kotlin/com/mapbox/maps/mapbox_maps_example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/ktlint.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/gradle/ktlint.gradle -------------------------------------------------------------------------------- /example/android/gradle/lint.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/gradle/lint.gradle -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/assets/cluster/cluster_count_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/cluster/cluster_count_layer.json -------------------------------------------------------------------------------- /example/assets/cluster/cluster_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/cluster/cluster_layer.json -------------------------------------------------------------------------------- /example/assets/cluster/cluster_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/cluster/cluster_source.json -------------------------------------------------------------------------------- /example/assets/cluster/unclustered_point_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/cluster/unclustered_point_layer.json -------------------------------------------------------------------------------- /example/assets/featuresetsStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/featuresetsStyle.json -------------------------------------------------------------------------------- /example/assets/fragment_realestate_NY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/fragment_realestate_NY.json -------------------------------------------------------------------------------- /example/assets/from_crema_to_council_crest.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/from_crema_to_council_crest.geojson -------------------------------------------------------------------------------- /example/assets/geojson_source_large_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/geojson_source_large_points.json -------------------------------------------------------------------------------- /example/assets/layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/layer.json -------------------------------------------------------------------------------- /example/assets/miami_beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/miami_beach.png -------------------------------------------------------------------------------- /example/assets/point_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/point_layer.json -------------------------------------------------------------------------------- /example/assets/raster_array_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/raster_array_layers.json -------------------------------------------------------------------------------- /example/assets/sf_airport_route.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/sf_airport_route.geojson -------------------------------------------------------------------------------- /example/assets/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/source.json -------------------------------------------------------------------------------- /example/assets/sportcar.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/sportcar.glb -------------------------------------------------------------------------------- /example/assets/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/style.json -------------------------------------------------------------------------------- /example/assets/symbols/2.0x/custom-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/symbols/2.0x/custom-icon.png -------------------------------------------------------------------------------- /example/assets/symbols/3.0x/custom-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/symbols/3.0x/custom-icon.png -------------------------------------------------------------------------------- /example/assets/symbols/custom-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/assets/symbols/custom-icon.png -------------------------------------------------------------------------------- /example/integration_test/all_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/all_test.dart -------------------------------------------------------------------------------- /example/integration_test/animation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/animation_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/circle_annotation_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/circle_annotation_manager_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/circle_annotation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/circle_annotation_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/point_annotation_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/point_annotation_manager_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/point_annotation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/point_annotation_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/polygon_annotation_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/polygon_annotation_manager_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/polygon_annotation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/polygon_annotation_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/polyline_annotation_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/polyline_annotation_manager_test.dart -------------------------------------------------------------------------------- /example/integration_test/annotations/polyline_annotation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/annotations/polyline_annotation_test.dart -------------------------------------------------------------------------------- /example/integration_test/attribution_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/attribution_test.dart -------------------------------------------------------------------------------- /example/integration_test/camera_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/camera_test.dart -------------------------------------------------------------------------------- /example/integration_test/compass_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/compass_test.dart -------------------------------------------------------------------------------- /example/integration_test/empty_map_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/empty_map_widget.dart -------------------------------------------------------------------------------- /example/integration_test/gestures_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/gestures_test.dart -------------------------------------------------------------------------------- /example/integration_test/interactive_features_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/interactive_features_test.dart -------------------------------------------------------------------------------- /example/integration_test/location_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/location_test.dart -------------------------------------------------------------------------------- /example/integration_test/logo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/logo_test.dart -------------------------------------------------------------------------------- /example/integration_test/map_interface_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/map_interface_test.dart -------------------------------------------------------------------------------- /example/integration_test/map_recorder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/map_recorder_test.dart -------------------------------------------------------------------------------- /example/integration_test/offline_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/offline_test.dart -------------------------------------------------------------------------------- /example/integration_test/projection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/projection_test.dart -------------------------------------------------------------------------------- /example/integration_test/scale_bar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/scale_bar_test.dart -------------------------------------------------------------------------------- /example/integration_test/snapshotter/snapshotter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/snapshotter/snapshotter_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/background_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/background_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/circle_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/circle_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/clip_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/clip_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/fill_extrusion_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/fill_extrusion_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/fill_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/fill_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/heatmap_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/heatmap_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/hillshade_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/hillshade_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/line_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/line_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/location_indicator_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/location_indicator_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/model_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/model_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/raster_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/raster_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/raster_particle_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/raster_particle_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/sky_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/sky_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/slot_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/slot_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/layer/symbol_layer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/layer/symbol_layer_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/source/geojson_source_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/source/geojson_source_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/source/image_source_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/source/image_source_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/source/raster_source_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/source/raster_source_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/source/rasterarray_source_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/source/rasterarray_source_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/source/rasterdem_source_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/source/rasterdem_source_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/source/vector_source_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/source/vector_source_test.dart -------------------------------------------------------------------------------- /example/integration_test/style/style_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/style/style_test.dart -------------------------------------------------------------------------------- /example/integration_test/utils/list_close_to_matcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/utils/list_close_to_matcher.dart -------------------------------------------------------------------------------- /example/integration_test/viewport_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/integration_test/viewport_test.dart -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/ios/RunnerTests/RunnerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/ios/RunnerTests/RunnerTests.m -------------------------------------------------------------------------------- /example/lib/animated_route_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/animated_route_example.dart -------------------------------------------------------------------------------- /example/lib/animation_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/animation_example.dart -------------------------------------------------------------------------------- /example/lib/camera_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/camera_example.dart -------------------------------------------------------------------------------- /example/lib/circle_annotations_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/circle_annotations_example.dart -------------------------------------------------------------------------------- /example/lib/cluster_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/cluster_example.dart -------------------------------------------------------------------------------- /example/lib/custom_header_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/custom_header_example.dart -------------------------------------------------------------------------------- /example/lib/custom_vector_icons_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/custom_vector_icons_example.dart -------------------------------------------------------------------------------- /example/lib/debug_options_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/debug_options_example.dart -------------------------------------------------------------------------------- /example/lib/draggable-annotations-example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/draggable-annotations-example.dart -------------------------------------------------------------------------------- /example/lib/edit_polygon_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/edit_polygon_example.dart -------------------------------------------------------------------------------- /example/lib/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/example.dart -------------------------------------------------------------------------------- /example/lib/full_map_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/full_map_example.dart -------------------------------------------------------------------------------- /example/lib/geojson_line_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/geojson_line_example.dart -------------------------------------------------------------------------------- /example/lib/gestures_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/gestures_example.dart -------------------------------------------------------------------------------- /example/lib/image_source_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/image_source_example.dart -------------------------------------------------------------------------------- /example/lib/location_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/location_example.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/map_interface_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/map_interface_example.dart -------------------------------------------------------------------------------- /example/lib/map_recorder_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/map_recorder_example.dart -------------------------------------------------------------------------------- /example/lib/model_layer_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/model_layer_example.dart -------------------------------------------------------------------------------- /example/lib/model_layer_interactions_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/model_layer_interactions_example.dart -------------------------------------------------------------------------------- /example/lib/offline_map_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/offline_map_example.dart -------------------------------------------------------------------------------- /example/lib/ornaments_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/ornaments_example.dart -------------------------------------------------------------------------------- /example/lib/point_annotations_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/point_annotations_example.dart -------------------------------------------------------------------------------- /example/lib/polygon_annotations_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/polygon_annotations_example.dart -------------------------------------------------------------------------------- /example/lib/polyline_annotations_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/polyline_annotations_example.dart -------------------------------------------------------------------------------- /example/lib/projection_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/projection_example.dart -------------------------------------------------------------------------------- /example/lib/simple_map_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/simple_map_example.dart -------------------------------------------------------------------------------- /example/lib/snapshotter_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/snapshotter_example.dart -------------------------------------------------------------------------------- /example/lib/spinning_globe_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/spinning_globe_example.dart -------------------------------------------------------------------------------- /example/lib/standard_style_import_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/standard_style_import_example.dart -------------------------------------------------------------------------------- /example/lib/standard_style_interactions_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/standard_style_interactions_example.dart -------------------------------------------------------------------------------- /example/lib/style_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/style_example.dart -------------------------------------------------------------------------------- /example/lib/tile_json_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/tile_json_example.dart -------------------------------------------------------------------------------- /example/lib/traffic_layer_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/traffic_layer_example.dart -------------------------------------------------------------------------------- /example/lib/traffic_route_line_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/traffic_route_line_example.dart -------------------------------------------------------------------------------- /example/lib/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/utils.dart -------------------------------------------------------------------------------- /example/lib/vector_tile_source_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/vector_tile_source_example.dart -------------------------------------------------------------------------------- /example/lib/viewport_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/lib/viewport_example.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/example/test_driver/integration_test.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter.podspec -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/.swiftlint.yml -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Package.resolved -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Package.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/AnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/AnimationController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/AnnotationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/AnnotationController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/BaseAnnotationMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/BaseAnnotationMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/CircleAnnotationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/CircleAnnotationController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/PointAnnotationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/PointAnnotationController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/PolygonAnnotationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/PolygonAnnotationController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/PolylineAnnotationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Annotations/PolylineAnnotationController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/AnyFlutterStreamHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/AnyFlutterStreamHandler.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/AttributionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/AttributionController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/CameraController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/CameraController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/CompassController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/CompassController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/CustomHttpServiceInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/CustomHttpServiceInterceptor.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/EnumsMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/EnumsMapping.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/EventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/EventHandler.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Extensions.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/CircleAnnotationMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/CircleAnnotationMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/GestureListeners.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/GestureListeners.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/LogBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/LogBackend.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/MapInterfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/MapInterfaces.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/MapRecorderMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/MapRecorderMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/OfflineMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/OfflineMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PerformaceStatistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PerformaceStatistics.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PointAnnotationMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PointAnnotationMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PolygonAnnotationMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PolygonAnnotationMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PolylineAnnotationMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/PolylineAnnotationMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/Settings.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/SnapshotterMessenger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/SnapshotterMessenger.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/ViewportInternal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Generated/ViewportInternal.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/GesturesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/GesturesController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/InteractionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/InteractionsController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/LocationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/LocationController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/LoggingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/LoggingController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/LogoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/LogoController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapEvents+JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapEvents+JSON.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapInterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapInterfaceController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapProjectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapProjectionController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapRecorderController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapRecorderController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxMapController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxMapController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxMapFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxMapFactory.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxMapsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxMapsPlugin.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxOptionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/MapboxOptionsController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Offline/OfflineController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Offline/OfflineController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Offline/OfflineMapInstanceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Offline/OfflineMapInstanceManager.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Offline/TileStoreController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Offline/TileStoreController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/PerformanceStatisticsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/PerformanceStatisticsController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/ScalebarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/ScalebarController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Snapshotter/SnapshotterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Snapshotter/SnapshotterController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Snapshotter/SnapshotterInstanceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Snapshotter/SnapshotterInstanceManager.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/StyleController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/StyleController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/StyleLights.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/StyleLights.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/TurfAdapters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/TurfAdapters.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Viewport/States.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Viewport/States.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Viewport/Transitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Viewport/Transitions.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Viewport/ViewportController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/Viewport/ViewportController.swift -------------------------------------------------------------------------------- /ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/mapbox_maps_flutter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/ios/mapbox_maps_flutter/Sources/mapbox_maps_flutter/Classes/mapbox_maps_flutter.h -------------------------------------------------------------------------------- /lib/mapbox_maps_flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/mapbox_maps_flutter.dart -------------------------------------------------------------------------------- /lib/src/annotation/annotation_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/annotation/annotation_manager.dart -------------------------------------------------------------------------------- /lib/src/annotation/circle_annotation_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/annotation/circle_annotation_manager.dart -------------------------------------------------------------------------------- /lib/src/annotation/point_annotation_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/annotation/point_annotation_manager.dart -------------------------------------------------------------------------------- /lib/src/annotation/polygon_annotation_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/annotation/polygon_annotation_manager.dart -------------------------------------------------------------------------------- /lib/src/annotation/polyline_annotation_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/annotation/polyline_annotation_manager.dart -------------------------------------------------------------------------------- /lib/src/callbacks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/callbacks.dart -------------------------------------------------------------------------------- /lib/src/cancelable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/cancelable.dart -------------------------------------------------------------------------------- /lib/src/deprecated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/deprecated.dart -------------------------------------------------------------------------------- /lib/src/events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/events.dart -------------------------------------------------------------------------------- /lib/src/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/extensions.dart -------------------------------------------------------------------------------- /lib/src/http/http_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/http/http_service.dart -------------------------------------------------------------------------------- /lib/src/location_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/location_settings.dart -------------------------------------------------------------------------------- /lib/src/log_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/log_configuration.dart -------------------------------------------------------------------------------- /lib/src/map_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/map_events.dart -------------------------------------------------------------------------------- /lib/src/map_recorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/map_recorder.dart -------------------------------------------------------------------------------- /lib/src/map_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/map_widget.dart -------------------------------------------------------------------------------- /lib/src/mapbox_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/mapbox_map.dart -------------------------------------------------------------------------------- /lib/src/mapbox_maps_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/mapbox_maps_options.dart -------------------------------------------------------------------------------- /lib/src/mapbox_maps_platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/mapbox_maps_platform.dart -------------------------------------------------------------------------------- /lib/src/offline/offline_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/offline/offline_manager.dart -------------------------------------------------------------------------------- /lib/src/offline/offline_messenger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/offline/offline_messenger.dart -------------------------------------------------------------------------------- /lib/src/offline/offline_switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/offline/offline_switch.dart -------------------------------------------------------------------------------- /lib/src/offline/tile_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/offline/tile_store.dart -------------------------------------------------------------------------------- /lib/src/package_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/package_info.dart -------------------------------------------------------------------------------- /lib/src/pigeons/circle_annotation_messenger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/circle_annotation_messenger.dart -------------------------------------------------------------------------------- /lib/src/pigeons/gesture_listeners.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/gesture_listeners.dart -------------------------------------------------------------------------------- /lib/src/pigeons/log_backend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/log_backend.dart -------------------------------------------------------------------------------- /lib/src/pigeons/map_interfaces.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/map_interfaces.dart -------------------------------------------------------------------------------- /lib/src/pigeons/map_recorder_messenger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/map_recorder_messenger.dart -------------------------------------------------------------------------------- /lib/src/pigeons/performace_statistics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/performace_statistics.dart -------------------------------------------------------------------------------- /lib/src/pigeons/point_annotation_messenger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/point_annotation_messenger.dart -------------------------------------------------------------------------------- /lib/src/pigeons/polygon_annotation_messenger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/polygon_annotation_messenger.dart -------------------------------------------------------------------------------- /lib/src/pigeons/polyline_annotation_messenger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/polyline_annotation_messenger.dart -------------------------------------------------------------------------------- /lib/src/pigeons/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/pigeons/settings.dart -------------------------------------------------------------------------------- /lib/src/snapshotter/snapshotter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/snapshotter/snapshotter.dart -------------------------------------------------------------------------------- /lib/src/snapshotter/snapshotter_messenger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/snapshotter/snapshotter_messenger.dart -------------------------------------------------------------------------------- /lib/src/style/interactive_features/interactive_features.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/interactive_features/interactive_features.dart -------------------------------------------------------------------------------- /lib/src/style/interactive_features/standard_buildings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/interactive_features/standard_buildings.dart -------------------------------------------------------------------------------- /lib/src/style/interactive_features/standard_place_labels.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/interactive_features/standard_place_labels.dart -------------------------------------------------------------------------------- /lib/src/style/interactive_features/standard_poi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/interactive_features/standard_poi.dart -------------------------------------------------------------------------------- /lib/src/style/layer/background_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/background_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/circle_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/circle_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/clip_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/clip_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/fill_extrusion_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/fill_extrusion_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/fill_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/fill_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/heatmap_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/heatmap_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/hillshade_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/hillshade_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/line_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/line_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/location_indicator_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/location_indicator_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/model_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/model_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/raster_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/raster_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/raster_particle_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/raster_particle_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/sky_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/sky_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/slot_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/slot_layer.dart -------------------------------------------------------------------------------- /lib/src/style/layer/symbol_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/layer/symbol_layer.dart -------------------------------------------------------------------------------- /lib/src/style/mapbox_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/mapbox_styles.dart -------------------------------------------------------------------------------- /lib/src/style/source/geojson_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/source/geojson_source.dart -------------------------------------------------------------------------------- /lib/src/style/source/image_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/source/image_source.dart -------------------------------------------------------------------------------- /lib/src/style/source/raster_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/source/raster_source.dart -------------------------------------------------------------------------------- /lib/src/style/source/rasterarray_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/source/rasterarray_source.dart -------------------------------------------------------------------------------- /lib/src/style/source/rasterdem_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/source/rasterdem_source.dart -------------------------------------------------------------------------------- /lib/src/style/source/vector_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/source/vector_source.dart -------------------------------------------------------------------------------- /lib/src/style/style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/style/style.dart -------------------------------------------------------------------------------- /lib/src/turf_adapters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/turf_adapters.dart -------------------------------------------------------------------------------- /lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/utils.dart -------------------------------------------------------------------------------- /lib/src/viewport/state_viewport_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/state_viewport_extension.dart -------------------------------------------------------------------------------- /lib/src/viewport/states/camera_viewport_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/states/camera_viewport_state.dart -------------------------------------------------------------------------------- /lib/src/viewport/states/follow_puck_viewport_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/states/follow_puck_viewport_state.dart -------------------------------------------------------------------------------- /lib/src/viewport/states/idle_viewport_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/states/idle_viewport_state.dart -------------------------------------------------------------------------------- /lib/src/viewport/states/overview_viewport_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/states/overview_viewport_state.dart -------------------------------------------------------------------------------- /lib/src/viewport/states/style_default_viewport_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/states/style_default_viewport_state.dart -------------------------------------------------------------------------------- /lib/src/viewport/states/viewport_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/states/viewport_state.dart -------------------------------------------------------------------------------- /lib/src/viewport/transitions/default_viewport_transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/transitions/default_viewport_transition.dart -------------------------------------------------------------------------------- /lib/src/viewport/transitions/easing_viewport_transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/transitions/easing_viewport_transition.dart -------------------------------------------------------------------------------- /lib/src/viewport/transitions/fly_viewport_transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/transitions/fly_viewport_transition.dart -------------------------------------------------------------------------------- /lib/src/viewport/transitions/viewport_transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/transitions/viewport_transition.dart -------------------------------------------------------------------------------- /lib/src/viewport/viewport_internal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/lib/src/viewport/viewport_internal.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /scripts/check-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/scripts/check-format.sh -------------------------------------------------------------------------------- /scripts/check_api_breakage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/scripts/check_api_breakage.sh -------------------------------------------------------------------------------- /scripts/check_test_suite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/scripts/check_test_suite.dart -------------------------------------------------------------------------------- /scripts/license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/scripts/license.sh -------------------------------------------------------------------------------- /scripts/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/scripts/update-version.sh -------------------------------------------------------------------------------- /test/events_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-maps-flutter/HEAD/test/events_test.dart --------------------------------------------------------------------------------