├── .firebaserc ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-bug.yml │ ├── 2-feature.yml │ └── config.yml ├── dependabot.yml └── workflows │ ├── issue_opened.yml │ ├── on-commit-main.yml │ ├── on-pull-request.yml │ └── update-ios-pods.yml ├── .gitignore ├── README.md ├── analysis_options.yaml ├── codecov.yml ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_map_plugins_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.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle.kts ├── assets │ └── mbtiles │ │ ├── countries-raster.mbtiles │ │ └── malta-vector.mbtiles ├── devtools_options.yaml ├── 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.swift ├── lib │ ├── common │ │ ├── attribution_widget.dart │ │ ├── translucent_layer.dart │ │ └── utils.dart │ ├── flutter_map_cache │ │ ├── cache_store_types.dart │ │ ├── connectivity_icon.dart │ │ └── page.dart │ ├── flutter_map_compass │ │ └── page.dart │ ├── flutter_map_maplibre │ │ ├── config.dart │ │ ├── page.dart │ │ └── page2.dart │ ├── flutter_map_mbtiles │ │ └── page.dart │ ├── flutter_map_pmtiles │ │ └── page.dart │ ├── main.dart │ ├── vector_map_tiles_mbtiles │ │ └── page.dart │ └── vector_map_tiles_pmtiles │ │ └── page.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ ├── my_application.h │ └── runner │ │ ├── CMakeLists.txt │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift ├── pubspec.yaml ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── firebase.json ├── flutter_map_cache ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ └── example.md ├── lib │ ├── flutter_map_cache.dart │ └── src │ │ ├── cached_image_provider.dart │ │ └── cached_tile_provider.dart ├── pubspec.yaml └── test │ ├── cached_image_provider_test.dart │ ├── cached_tile_provider_test.dart │ ├── integration_test.dart │ └── utils │ ├── functions.dart │ └── test_app.dart ├── flutter_map_compass ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ └── example.md ├── images │ └── screenshot.jpg ├── lib │ ├── flutter_map_compass.dart │ └── src │ │ ├── map_compass.dart │ │ └── utils.dart ├── pubspec.yaml └── test │ ├── integration_test.dart │ └── utils │ └── test_app.dart ├── flutter_map_maplibre ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ └── example.md ├── lib │ ├── flutter_map_maplibre.dart │ └── src │ │ ├── extensions.dart │ │ ├── flutter_map_adapter.dart │ │ └── maplibre_layer.dart └── pubspec.yaml ├── flutter_map_mbtiles ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ └── example.md ├── lib │ ├── flutter_map_mbtiles.dart │ └── src │ │ ├── mbtiles_image_provider.dart │ │ └── mbtiles_tile_provider.dart ├── pubspec.yaml └── test │ ├── integration_test.dart │ ├── integration_test.mocks.dart │ └── utils │ └── test_app.dart ├── flutter_map_pmtiles ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ └── example.md ├── lib │ ├── flutter_map_pmtiles.dart │ └── src │ │ ├── pmtiles_image_provider.dart │ │ └── pmtiles_tile_provider.dart ├── pubspec.yaml └── test │ ├── integration_test.dart │ ├── integration_test.mocks.dart │ ├── pmtiles_tile_provider_test.dart │ └── utils │ └── test_app.dart ├── melos.yaml ├── pubspec.yaml ├── vector_map_tiles_mbtiles ├── .gitattributes ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ └── example.md ├── lib │ ├── src │ │ └── vector_tile_provider.dart │ └── vector_map_tiles_mbtiles.dart ├── pubspec.yaml └── test │ ├── integration_test.dart │ ├── pmtiles_tile_provider_test.dart │ └── utils │ ├── common.dart │ ├── common.mocks.dart │ └── test_app.dart └── vector_map_tiles_pmtiles ├── .gitattributes ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── example.md ├── images ├── screenshot-black.jpg ├── screenshot-dark.jpg ├── screenshot-grayscale.jpg ├── screenshot-light.jpg └── screenshot-white.jpg ├── lib ├── src │ ├── themes │ │ ├── protomaps_themes.dart │ │ ├── v3 │ │ │ ├── _package.dart │ │ │ ├── black.dart │ │ │ ├── dark.dart │ │ │ ├── grayscale.dart │ │ │ ├── light.dart │ │ │ └── white.dart │ │ └── v4 │ │ │ ├── _package.dart │ │ │ ├── black.dart │ │ │ ├── dark.dart │ │ │ ├── grayscale.dart │ │ │ ├── light.dart │ │ │ └── white.dart │ └── vector_tile_provider.dart └── vector_map_tiles_pmtiles.dart ├── pubspec.yaml └── test ├── integration_test.dart ├── integration_test.mocks.dart ├── pmtiles_tile_provider_test.dart ├── protomaps_themes_test.dart └── utils └── test_app.dart /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/ISSUE_TEMPLATE/1-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/ISSUE_TEMPLATE/2-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/issue_opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/workflows/issue_opened.yml -------------------------------------------------------------------------------- /.github/workflows/on-commit-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/workflows/on-commit-main.yml -------------------------------------------------------------------------------- /.github/workflows/on-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/workflows/on-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/update-ios-pods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.github/workflows/update-ios-pods.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/codecov.yml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | Example app for all flutter_map_plugins -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/app/build.gradle.kts -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/flutter_map_plugins_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/app/src/main/kotlin/com/example/flutter_map_plugins_example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/build.gradle.kts -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/android/settings.gradle.kts -------------------------------------------------------------------------------- /example/assets/mbtiles/countries-raster.mbtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/assets/mbtiles/countries-raster.mbtiles -------------------------------------------------------------------------------- /example/assets/mbtiles/malta-vector.mbtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/assets/mbtiles/malta-vector.mbtiles -------------------------------------------------------------------------------- /example/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/devtools_options.yaml -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/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/josxha/flutter_map_plugins/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/lib/common/attribution_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/common/attribution_widget.dart -------------------------------------------------------------------------------- /example/lib/common/translucent_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/common/translucent_layer.dart -------------------------------------------------------------------------------- /example/lib/common/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/common/utils.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_cache/cache_store_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_cache/cache_store_types.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_cache/connectivity_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_cache/connectivity_icon.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_cache/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_cache/page.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_compass/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_compass/page.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_maplibre/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_maplibre/config.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_maplibre/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_maplibre/page.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_maplibre/page2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_maplibre/page2.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_mbtiles/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_mbtiles/page.dart -------------------------------------------------------------------------------- /example/lib/flutter_map_pmtiles/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/flutter_map_pmtiles/page.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/vector_map_tiles_mbtiles/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/vector_map_tiles_mbtiles/page.dart -------------------------------------------------------------------------------- /example/lib/vector_map_tiles_pmtiles/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/lib/vector_map_tiles_pmtiles/page.dart -------------------------------------------------------------------------------- /example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/main.cc -------------------------------------------------------------------------------- /example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/my_application.cc -------------------------------------------------------------------------------- /example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/my_application.h -------------------------------------------------------------------------------- /example/linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/runner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/runner/main.cc -------------------------------------------------------------------------------- /example/linux/runner/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/runner/my_application.cc -------------------------------------------------------------------------------- /example/linux/runner/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/linux/runner/my_application.h -------------------------------------------------------------------------------- /example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/.gitignore -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/firebase.json -------------------------------------------------------------------------------- /flutter_map_cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_map_cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/LICENSE -------------------------------------------------------------------------------- /flutter_map_cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/README.md -------------------------------------------------------------------------------- /flutter_map_cache/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../analysis_options.yaml -------------------------------------------------------------------------------- /flutter_map_cache/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/example/example.md -------------------------------------------------------------------------------- /flutter_map_cache/lib/flutter_map_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/lib/flutter_map_cache.dart -------------------------------------------------------------------------------- /flutter_map_cache/lib/src/cached_image_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/lib/src/cached_image_provider.dart -------------------------------------------------------------------------------- /flutter_map_cache/lib/src/cached_tile_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/lib/src/cached_tile_provider.dart -------------------------------------------------------------------------------- /flutter_map_cache/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/pubspec.yaml -------------------------------------------------------------------------------- /flutter_map_cache/test/cached_image_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/test/cached_image_provider_test.dart -------------------------------------------------------------------------------- /flutter_map_cache/test/cached_tile_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/test/cached_tile_provider_test.dart -------------------------------------------------------------------------------- /flutter_map_cache/test/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/test/integration_test.dart -------------------------------------------------------------------------------- /flutter_map_cache/test/utils/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/test/utils/functions.dart -------------------------------------------------------------------------------- /flutter_map_cache/test/utils/test_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_cache/test/utils/test_app.dart -------------------------------------------------------------------------------- /flutter_map_compass/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/.metadata -------------------------------------------------------------------------------- /flutter_map_compass/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_map_compass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/LICENSE -------------------------------------------------------------------------------- /flutter_map_compass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/README.md -------------------------------------------------------------------------------- /flutter_map_compass/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../analysis_options.yaml -------------------------------------------------------------------------------- /flutter_map_compass/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/example/example.md -------------------------------------------------------------------------------- /flutter_map_compass/images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/images/screenshot.jpg -------------------------------------------------------------------------------- /flutter_map_compass/lib/flutter_map_compass.dart: -------------------------------------------------------------------------------- 1 | export 'src/map_compass.dart'; 2 | -------------------------------------------------------------------------------- /flutter_map_compass/lib/src/map_compass.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/lib/src/map_compass.dart -------------------------------------------------------------------------------- /flutter_map_compass/lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/lib/src/utils.dart -------------------------------------------------------------------------------- /flutter_map_compass/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/pubspec.yaml -------------------------------------------------------------------------------- /flutter_map_compass/test/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/test/integration_test.dart -------------------------------------------------------------------------------- /flutter_map_compass/test/utils/test_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_compass/test/utils/test_app.dart -------------------------------------------------------------------------------- /flutter_map_maplibre/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/.gitignore -------------------------------------------------------------------------------- /flutter_map_maplibre/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/.metadata -------------------------------------------------------------------------------- /flutter_map_maplibre/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_map_maplibre/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/LICENSE -------------------------------------------------------------------------------- /flutter_map_maplibre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/README.md -------------------------------------------------------------------------------- /flutter_map_maplibre/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/analysis_options.yaml -------------------------------------------------------------------------------- /flutter_map_maplibre/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/example/example.md -------------------------------------------------------------------------------- /flutter_map_maplibre/lib/flutter_map_maplibre.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/lib/flutter_map_maplibre.dart -------------------------------------------------------------------------------- /flutter_map_maplibre/lib/src/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/lib/src/extensions.dart -------------------------------------------------------------------------------- /flutter_map_maplibre/lib/src/flutter_map_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/lib/src/flutter_map_adapter.dart -------------------------------------------------------------------------------- /flutter_map_maplibre/lib/src/maplibre_layer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/lib/src/maplibre_layer.dart -------------------------------------------------------------------------------- /flutter_map_maplibre/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_maplibre/pubspec.yaml -------------------------------------------------------------------------------- /flutter_map_mbtiles/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_map_mbtiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/LICENSE -------------------------------------------------------------------------------- /flutter_map_mbtiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/README.md -------------------------------------------------------------------------------- /flutter_map_mbtiles/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../analysis_options.yaml -------------------------------------------------------------------------------- /flutter_map_mbtiles/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/example/example.md -------------------------------------------------------------------------------- /flutter_map_mbtiles/lib/flutter_map_mbtiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/lib/flutter_map_mbtiles.dart -------------------------------------------------------------------------------- /flutter_map_mbtiles/lib/src/mbtiles_image_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/lib/src/mbtiles_image_provider.dart -------------------------------------------------------------------------------- /flutter_map_mbtiles/lib/src/mbtiles_tile_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/lib/src/mbtiles_tile_provider.dart -------------------------------------------------------------------------------- /flutter_map_mbtiles/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/pubspec.yaml -------------------------------------------------------------------------------- /flutter_map_mbtiles/test/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/test/integration_test.dart -------------------------------------------------------------------------------- /flutter_map_mbtiles/test/integration_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/test/integration_test.mocks.dart -------------------------------------------------------------------------------- /flutter_map_mbtiles/test/utils/test_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_mbtiles/test/utils/test_app.dart -------------------------------------------------------------------------------- /flutter_map_pmtiles/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/.metadata -------------------------------------------------------------------------------- /flutter_map_pmtiles/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/CHANGELOG.md -------------------------------------------------------------------------------- /flutter_map_pmtiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/LICENSE -------------------------------------------------------------------------------- /flutter_map_pmtiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/README.md -------------------------------------------------------------------------------- /flutter_map_pmtiles/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../analysis_options.yaml -------------------------------------------------------------------------------- /flutter_map_pmtiles/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/example/example.md -------------------------------------------------------------------------------- /flutter_map_pmtiles/lib/flutter_map_pmtiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/lib/flutter_map_pmtiles.dart -------------------------------------------------------------------------------- /flutter_map_pmtiles/lib/src/pmtiles_image_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/lib/src/pmtiles_image_provider.dart -------------------------------------------------------------------------------- /flutter_map_pmtiles/lib/src/pmtiles_tile_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/lib/src/pmtiles_tile_provider.dart -------------------------------------------------------------------------------- /flutter_map_pmtiles/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/pubspec.yaml -------------------------------------------------------------------------------- /flutter_map_pmtiles/test/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/test/integration_test.dart -------------------------------------------------------------------------------- /flutter_map_pmtiles/test/integration_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/test/integration_test.mocks.dart -------------------------------------------------------------------------------- /flutter_map_pmtiles/test/pmtiles_tile_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/test/pmtiles_tile_provider_test.dart -------------------------------------------------------------------------------- /flutter_map_pmtiles/test/utils/test_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/flutter_map_pmtiles/test/utils/test_app.dart -------------------------------------------------------------------------------- /melos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/melos.yaml -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/.gitattributes -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/.gitignore -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/.metadata -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/CHANGELOG.md -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/LICENSE -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/README.md -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../analysis_options.yaml -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/example/example.md -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/lib/src/vector_tile_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/lib/src/vector_tile_provider.dart -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/lib/vector_map_tiles_mbtiles.dart: -------------------------------------------------------------------------------- 1 | export 'src/vector_tile_provider.dart'; 2 | -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/pubspec.yaml -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/test/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/test/integration_test.dart -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/test/pmtiles_tile_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/test/pmtiles_tile_provider_test.dart -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/test/utils/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/test/utils/common.dart -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/test/utils/common.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/test/utils/common.mocks.dart -------------------------------------------------------------------------------- /vector_map_tiles_mbtiles/test/utils/test_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_mbtiles/test/utils/test_app.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/.gitattributes -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/.gitignore -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/.metadata -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/CHANGELOG.md -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/LICENSE -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/README.md -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/analysis_options.yaml -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/example/example.md -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/images/screenshot-black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/images/screenshot-black.jpg -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/images/screenshot-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/images/screenshot-dark.jpg -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/images/screenshot-grayscale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/images/screenshot-grayscale.jpg -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/images/screenshot-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/images/screenshot-light.jpg -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/images/screenshot-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/images/screenshot-white.jpg -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/protomaps_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/protomaps_themes.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v3/_package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v3/_package.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v3/black.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v3/black.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v3/dark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v3/dark.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v3/grayscale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v3/grayscale.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v3/light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v3/light.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v3/white.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v3/white.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v4/_package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v4/_package.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v4/black.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v4/black.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v4/dark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v4/dark.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v4/grayscale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v4/grayscale.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v4/light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v4/light.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/themes/v4/white.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/themes/v4/white.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/src/vector_tile_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/src/vector_tile_provider.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/lib/vector_map_tiles_pmtiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/lib/vector_map_tiles_pmtiles.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/pubspec.yaml -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/test/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/test/integration_test.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/test/integration_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/test/integration_test.mocks.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/test/pmtiles_tile_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/test/pmtiles_tile_provider_test.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/test/protomaps_themes_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/test/protomaps_themes_test.dart -------------------------------------------------------------------------------- /vector_map_tiles_pmtiles/test/utils/test_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josxha/flutter_map_plugins/HEAD/vector_map_tiles_pmtiles/test/utils/test_app.dart --------------------------------------------------------------------------------