{"id":17123770,"url":"https://github.com/hhkaos/flutter_arcgis_basemaps","last_synced_at":"2026-03-13T19:08:09.650Z","repository":{"id":145090223,"uuid":"583038186","full_name":"hhkaos/flutter_arcgis_basemaps","owner":"hhkaos","description":"Example project loading ArcGIS vector basemaps using Fluttler","archived":false,"fork":false,"pushed_at":"2023-02-14T11:58:12.000Z","size":5975,"stargazers_count":4,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-03T08:46:45.165Z","etag":null,"topics":["arcgis","basemaps","dart","esri","flutter","leaflet","maps","mvt","vector-map"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hhkaos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-28T15:24:11.000Z","updated_at":"2024-09-09T07:09:01.000Z","dependencies_parsed_at":"2023-06-03T04:15:38.664Z","dependency_job_id":null,"html_url":"https://github.com/hhkaos/flutter_arcgis_basemaps","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hhkaos/flutter_arcgis_basemaps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhkaos%2Fflutter_arcgis_basemaps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhkaos%2Fflutter_arcgis_basemaps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhkaos%2Fflutter_arcgis_basemaps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhkaos%2Fflutter_arcgis_basemaps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hhkaos","download_url":"https://codeload.github.com/hhkaos/flutter_arcgis_basemaps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhkaos%2Fflutter_arcgis_basemaps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30472990,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T17:15:31.527Z","status":"ssl_error","status_checked_at":"2026-03-13T17:15:22.394Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arcgis","basemaps","dart","esri","flutter","leaflet","maps","mvt","vector-map"],"created_at":"2024-10-14T18:27:10.489Z","updated_at":"2026-03-13T19:08:09.634Z","avatar_url":"https://github.com/hhkaos.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter_arcgis_basemaps\n\nThis is a sample app showing how to load ArcGIS vector basemaps using a [free \nArcGIS Platform account](https://developers.arcgis.com/sign-up/) and Leaflet.js using [flutter-vector-map-tiles](https://github.com/greensopinion/flutter-vector-map-tiles)\n\n![VSCode Screenshot](./assets/screenshot-arcgis-flutter.png)\n\n## Getting Started\n\nPlace a `api_key.dart` file within lib/src with the following content (replacing the API key)\n\n```dart\n// Create a free account: https://developers.arcgis.com/sign-up\n// Grab the API from: https://developers.arcgis.com/api-keys/\nfinal apiKey = '\u003cyour_API_KEY\u003e';\n```\n\n## Clarifications\n\nThis project has to Widgets:\n\n* MapScreen at `lib/src/leafletvector_screen.dart`: this one load a static map style from `lib/src/navigation_style.dart`\n* MapScreenAsync at `lib/src/leafletvectorasync_screen.dart` which allows to set all map styles supported by ArcGIS using the values defined at `lib/src/arcgis_map_styles.dart`.\n\n## Gallery of supported basemaps\n\n\u003ctable\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-navigation\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-navigation.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-navigation-night\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-navigation-night.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-community\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-community.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-nova\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-nova.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-midcentury\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-midcentury.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-streets\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-streets.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-streets-night\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-streets-night.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-light-gray\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-light-gray.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-dark-gray\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-dark-gray.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-human-geography\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-human-geography.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003ch5\u003earcgis-human-geography-dark\u003c/h5\u003e\n            \u003cimg src=\"./assets/arcgis-human-geography-dark.png\" alt=\"example screenshot\" width=\"292\" /\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n\u003c/table\u003e\n\n## Known issues\n\nThere are some limitations that needs to be overcome. Those are listed in the [project issues](https://github.com/hhkaos/flutter_arcgis_basemaps/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhhkaos%2Fflutter_arcgis_basemaps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhhkaos%2Fflutter_arcgis_basemaps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhhkaos%2Fflutter_arcgis_basemaps/lists"}