{"id":51067200,"url":"https://github.com/geoql/v-mapkit","last_synced_at":"2026-06-23T07:32:23.522Z","repository":{"id":36998795,"uuid":"379187959","full_name":"geoql/v-mapkit","owner":"geoql","description":"18 Vue 3 components for Apple MapKit JS — annotations, overlays, Look Around, search \u0026 geocoding, and more","archived":false,"fork":false,"pushed_at":"2026-06-12T21:10:04.000Z","size":6621,"stargazers_count":12,"open_issues_count":4,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-06-12T22:15:51.782Z","etag":null,"topics":["mapkit","mapkit-js","typescript","vue","vue3","vuejs"],"latest_commit_sha":null,"homepage":"https://v-mapkit.geoql.in/","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/geoql.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2021-06-22T07:57:07.000Z","updated_at":"2026-06-12T21:13:21.000Z","dependencies_parsed_at":"2023-02-17T12:31:04.821Z","dependency_job_id":"87bf9a2d-aba3-473d-abf2-72dc05893251","html_url":"https://github.com/geoql/v-mapkit","commit_stats":{"total_commits":753,"total_committers":3,"mean_commits":251.0,"dds":"0.11288180610889775","last_synced_commit":"e98f9c87e09d02d8e24678227262b4ad3d1815d3"},"previous_names":["geoql/v-mapkit"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/geoql/v-mapkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoql%2Fv-mapkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoql%2Fv-mapkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoql%2Fv-mapkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoql%2Fv-mapkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geoql","download_url":"https://codeload.github.com/geoql/v-mapkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoql%2Fv-mapkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34680620,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["mapkit","mapkit-js","typescript","vue","vue3","vuejs"],"created_at":"2026-06-23T07:32:21.351Z","updated_at":"2026-06-23T07:32:23.517Z","avatar_url":"https://github.com/geoql.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# v-mapkit\n\n\u003e Vue 3 components for Apple MapKit JS - Monorepo for v-mapkit and mapkit-cn\n\n[![npm version](https://badge.fury.io/js/@geoql%2Fv-mapkit.svg)](https://www.npmjs.com/package/@geoql/v-mapkit)\n[![JSR](https://jsr.io/badges/@geoql/v-mapkit)](https://jsr.io/@geoql/v-mapkit)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n## Packages\n\n| Package                         | Description                          |\n| ------------------------------- | ------------------------------------ |\n| [v-mapkit](./packages/v-mapkit) | Vue 3 components for Apple MapKit JS |\n\n## Apps\n\n| App                           | Description                                   |\n| ----------------------------- | --------------------------------------------- |\n| [mapkit-cn](./apps/mapkit-cn) | Showcase site with 23 live examples (Nuxt 4)  |\n| [docs](./apps/docs)           | Documentation site (Nuxt 4 + `@nuxt/content`) |\n\n## Quick Start\n\n### Install the library\n\n```bash\npnpm add @geoql/v-mapkit\n```\n\n```vue\n\u003cscript setup lang=\"ts\"\u003e\nimport { VMap, VMarkerAnnotation } from \"@geoql/v-mapkit\";\nimport \"@geoql/v-mapkit/style.css\";\n\nconst token = \"YOUR_MAPKIT_TOKEN\";\n\n// Coordinates aren't props — MapKit owns the live map, so set the\n// initial region once the instance is ready via the @map event.\nfunction onMap(map: mapkit.Map) {\n  map.setRegionAnimated(\n    new mapkit.CoordinateRegion(\n      new mapkit.Coordinate(37.7749, -122.4194),\n      new mapkit.CoordinateSpan(0.1, 0.1),\n    ),\n  );\n}\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cVMap :access-token=\"token\" @map=\"onMap\"\u003e\n    \u003cVMarkerAnnotation :coordinates=\"[37.7749, -122.4194]\" /\u003e\n  \u003c/VMap\u003e\n\u003c/template\u003e\n```\n\n### Use mapkit-cn (shadcn-vue style)\n\n```bash\nnpx shadcn-vue@latest add https://mapkit-cn.geoql.in/r/v-map\n```\n\n## Development\n\nThis monorepo uses [pnpm v11](https://pnpm.io) workspaces.\n\n```bash\n# Install all dependencies\npnpm install\n\n# Development\npnpm run dev:lib      # Watch mode for library\npnpm run dev:app      # Showcase site\n\n# Build\npnpm run build        # Build all packages\npnpm run build:app    # Build showcase site\n\n# Test\npnpm run test\n\n# Lint \u0026 Format\npnpm run lint\npnpm run format\n```\n\n## Monorepo Structure\n\n```\nv-mapkit/\n├── packages/\n│   └── v-mapkit/            # Core library (npm + jsr: @geoql/v-mapkit)\n├── apps/\n│   ├── mapkit-cn/           # Nuxt 4 showcase site (23 live examples + registry)\n│   └── docs/                # Nuxt 4 documentation site (@nuxt/content)\n├── package.json             # pnpm workspaces root\n├── pnpm-workspace.yaml      # Workspace config\n└── pnpm-lock.yaml\n```\n\n## License\n\nMIT License - see [LICENSE](./packages/v-mapkit/LICENSE) for details\n\n---\n\nMade with ❤️ by [GeoQL](https://github.com/geoql)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoql%2Fv-mapkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeoql%2Fv-mapkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoql%2Fv-mapkit/lists"}