{"id":18313542,"url":"https://github.com/nakamura196/iiif_geo","last_synced_at":"2025-07-16T05:33:08.544Z","repository":{"id":211353140,"uuid":"673353326","full_name":"nakamura196/iiif_geo","owner":"nakamura196","description":"IIIF Viewer with IIIF Georeference Extension","archived":false,"fork":false,"pushed_at":"2025-07-10T01:28:31.000Z","size":11954,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-10T10:06:16.694Z","etag":null,"topics":["georeference","iiif","leaflet","nuxt","openseadragon","vue"],"latest_commit_sha":null,"homepage":"https://nakamura196.github.io/iiif_geo/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nakamura196.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":"nakamura196","ko_fi":"nakamura196"}},"created_at":"2023-08-01T12:45:24.000Z","updated_at":"2025-07-10T01:28:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"d92b4eb8-aeb7-47b2-8aa1-d99a90279a0b","html_url":"https://github.com/nakamura196/iiif_geo","commit_stats":null,"previous_names":["nakamura196/iiif_geo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nakamura196/iiif_geo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakamura196%2Fiiif_geo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakamura196%2Fiiif_geo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakamura196%2Fiiif_geo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakamura196%2Fiiif_geo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nakamura196","download_url":"https://codeload.github.com/nakamura196/iiif_geo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakamura196%2Fiiif_geo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265484842,"owners_count":23774406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["georeference","iiif","leaflet","nuxt","openseadragon","vue"],"created_at":"2024-11-05T16:28:02.564Z","updated_at":"2025-07-16T05:33:08.519Z","avatar_url":"https://github.com/nakamura196.png","language":"CSS","funding_links":["https://github.com/sponsors/nakamura196","https://ko-fi.com/nakamura196"],"categories":[],"sub_categories":[],"readme":"# IIIF Georeference Viewer\n\nIIIF Viewer with [IIIF Georeference Extension](https://iiif.io/api/extension/georef/)\n\n\u003cimg src=\"public/assets/images/demo.gif\" width=\"100%\" title=\"demo\"\u003e\n\n## 🌐 Website\n\n[Visit the demo page](https://nakamura196.github.io/iiif_geo/) to try it out.\n\n## 📖 Data\n\nPrepare a JSON file following the Full Canvas Example of the Georeference Extension.\n\nhttps://iiif.io/api/extension/georef/#41-full-canvas-example\n\nThe JSON file used on the demo site is as follows.\n\nhttps://nakamura196.github.io/iiif_geo/canvas.json\n\n### Extra metadata fields\n\nExtra metadata fields can be added to the Feature data.\n\n```json\n{\n    \"type\": \"Feature\",\n    \"properties\": {\n        \"resourceCoords\": [\n            6690,\n            7517\n        ]\n    },\n    \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n            139.7623182,\n            35.7151233\n        ]\n    },\n    \"metadata\": {\n        \"id\": \"http://example.org/dJdXXQEA8dWSptgt8\",\n        \"label\": \"電気実験室\",\n        \"tags\": [\"工学部\"],\n        \"url\": \"https://maps.app.goo.gl/dJdXXQEA8dWSptgt8\",\n        \"xywh\": \"5936,6344,976,1384\",\n    }\n}\n```\n\nThe `metadata` field is used to display the label, tags, and URL of the place.\n\n| Field | Description | Required | Format |\n| ---- | ---- | ---- | ---- |\n| id | URI of the place | False | String |\n| label | Label of the place | False | String |\n| tags | Tags of the place | False | Array |\n| url | URL of the place | False | String |\n| xywh | XYWH region of the place | False | String |\n\nThese fields are used for the popup of the marker and the search function.\n\n#### Example\n\nhttps://nakamura196.github.io/iiif_geo/canvas_extra.json\n\n#### Marker popup\n\n![](public/assets/images/marker.webp)\n\n#### Search\n\n![](public/assets/images/search.webp)\n\n## Setup\n\nMake sure to install the dependencies:\n\n```bash\n# npm\nnpm install\n\n# pnpm\npnpm install\n\n# yarn\nyarn install\n```\n\n## Development Server\n\nStart the development server on `http://localhost:3000`:\n\n```bash\n# npm\nnpm run dev\n\n# pnpm\npnpm run dev\n\n# yarn\nyarn dev\n```\n\n## Production\n\nBuild the application for production:\n\n```bash\n# npm\nnpm run build\n\n# pnpm\npnpm run build\n\n# yarn\nyarn build\n```\n\nLocally preview production build:\n\n```bash\n# npm\nnpm run preview\n\n# pnpm\npnpm run preview\n\n# yarn\nyarn preview\n```\n\nCheck out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnakamura196%2Fiiif_geo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnakamura196%2Fiiif_geo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnakamura196%2Fiiif_geo/lists"}