{"id":41290230,"url":"https://github.com/yharby/pygeoapi-map","last_synced_at":"2026-02-13T23:33:06.795Z","repository":{"id":265121680,"uuid":"895200039","full_name":"yharby/pygeoapi-map","owner":"yharby","description":"Multilingual web application built with Vue.js and Leaflet, enabling interactive visualization of pygeoapi collections (OGC API). [The codebase is heavily developed with AI].","archived":false,"fork":false,"pushed_at":"2026-01-23T13:01:56.000Z","size":2597,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-23T18:50:26.731Z","etag":null,"topics":["ogc-api","osgeo","pygeoapi"],"latest_commit_sha":null,"homepage":"https://youssef-harby.github.io/pygeoapi-map/","language":"Vue","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/yharby.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-27T18:37:01.000Z","updated_at":"2024-12-02T18:27:38.000Z","dependencies_parsed_at":"2024-11-28T00:41:07.589Z","dependency_job_id":null,"html_url":"https://github.com/yharby/pygeoapi-map","commit_stats":null,"previous_names":["youssef-harby/pygeoapi-map","yharby/pygeoapi-map"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yharby/pygeoapi-map","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yharby%2Fpygeoapi-map","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yharby%2Fpygeoapi-map/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yharby%2Fpygeoapi-map/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yharby%2Fpygeoapi-map/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yharby","download_url":"https://codeload.github.com/yharby/pygeoapi-map/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yharby%2Fpygeoapi-map/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29423534,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T22:20:51.549Z","status":"ssl_error","status_checked_at":"2026-02-13T22:20:49.838Z","response_time":78,"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":["ogc-api","osgeo","pygeoapi"],"created_at":"2026-01-23T03:30:03.491Z","updated_at":"2026-02-13T23:33:06.773Z","avatar_url":"https://github.com/yharby.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pygeoapi-map\n\nA modern, multilingual web application for visualizing and interacting with PyGeoAPI collections. Built with Vue.js and Leaflet, it provides an intuitive interface for exploring geospatial data served through PyGeoAPI.\n\n![alt text](screenshot.png)\n\n## Features\n\n- 🌍 Interactive map visualization using Leaflet\n- 🎨 Dynamic collection styling with auto-generated colors\n- 🌐 Multilingual support (en-US, ar-EG)\n- 🔄 Real-time collection toggling\n- 📱 Responsive design\n- ⚡ Dynamic server URL configuration\n- 🎯 Automatic zoom to collection bounds\n- 💾 Persistent user preferences\n\n## Supported Collection Types\n\n- ✅ OGC API - Features (GeoJSON)\n- ⬜️ OGC API - Coverages\n- ⬜️ OGC API - Tiles (Vector Tiles)\n- ✅ OGC API - Records (Display BBOX Features)\n\n## Quick Start\n\n### Using Docker\n\n1. Create a `config.json` file:\n\n```json\n{\n  \"server\": {\n    \"url\": \"https://demo.pygeoapi.io/master/\"\n  },\n  \"i18n\": {\n    \"defaultLocale\": \"en-US\",\n    \"supportedLocales\": [\n      {\n        \"code\": \"en-US\",\n        \"name\": \"English\",\n        \"flag\": \"🇺🇸\",\n        \"direction\": \"ltr\",\n        \"headerTitle\": \"pygeoapi-map\"\n      },\n      {\n        \"code\": \"ar-EG\",\n        \"name\": \"العربية\",\n        \"flag\": \"🇪🇬\",\n        \"direction\": \"rtl\",\n        \"headerTitle\": \"خريطة pygeoapi\"\n      }\n    ]\n  }\n}\n```\n\n2. Run using Docker:\n\n```bash\ndocker run -d \\\n  --name pygeoapi-map \\\n  -p 8080:80 \\\n  -v $(pwd)/config.json:/srv/config.json:ro \\\n  ghcr.io/youssef-harby/pygeoapi-map:latest\n```\n\n### Using Docker Compose\n\n1. Create a `docker-compose.yml` file:\n\n```yaml\nservices:\n  pygeoapi-map:\n    image: ghcr.io/youssef-harby/pygeoapi-map:latest\n    container_name: pygeoapi-map\n    ports:\n      - \"8080:80\"\n    volumes:\n      - ./config.json:/srv/config.json:ro\n```\n\n2. Run using Docker Compose:\n\n```bash\ndocker compose up -d\n```\n\nThe application will be available at `http://localhost:8080`\n\n## Development Setup\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/youssef-harby/pygeoapi-map.git\ncd pygeoapi-map\n```\n\n2. Install dependencies:\n```bash\nnpm install\n```\n\n3. Create a `public/config.json` file with your PyGeoAPI server configuration.\n\n4. Start the development server:\n```bash\nnpm run serve\n```\n\n5. Build for production:\n```bash\nnpm run build\n```\n\n## Configuration\n\nThe `config.json` file supports the following options:\n\n```json\n{\n  \"server\": {\n    \"url\": \"https://demo.pygeoapi.io/master\"  // Your PyGeoAPI server URL\n  },\n  \"i18n\": {\n    \"defaultLocale\": \"en-US\",          // Default language\n    \"supportedLocales\": [              // Available languages\n      {\n        \"code\": \"en-US\",\n        \"name\": \"English\",\n        \"flag\": \"🇺🇸\",\n        \"direction\": \"ltr\",\n        \"headerTitle\": \"pygeoapi-map\"  // Header title in English\n      }\n    ]\n  }\n}\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch: `git checkout -b feature/my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin feature/my-new-feature`\n5. Submit a pull request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- [PyGeoAPI](https://pygeoapi.io/) for the amazing geospatial server\n- [Vue.js](https://vuejs.org/) for the reactive frontend framework\n- [Leaflet](https://leafletjs.com/) for the mapping capabilities\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyharby%2Fpygeoapi-map","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyharby%2Fpygeoapi-map","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyharby%2Fpygeoapi-map/lists"}