{"id":23432968,"url":"https://github.com/ilyaliao/voomap","last_synced_at":"2025-10-09T02:23:42.430Z","repository":{"id":185389229,"uuid":"672869587","full_name":"ilyaliao/voomap","owner":"ilyaliao","description":"Easy use of Google Maps with Composable / Component","archived":false,"fork":false,"pushed_at":"2025-04-03T16:41:10.000Z","size":803,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"v0.1","last_synced_at":"2025-04-10T07:15:31.903Z","etag":null,"topics":["composable","composition-api","google-maps","google-maps-api","typescript","vue3"],"latest_commit_sha":null,"homepage":"https://voomap.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ilyaliao.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2023-07-31T10:58:02.000Z","updated_at":"2025-04-03T16:41:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"9f7b3b36-4cd4-46ee-b878-b81d934a4b79","html_url":"https://github.com/ilyaliao/voomap","commit_stats":null,"previous_names":["cofcat456/vue3-google-map","cofcat456/voomap","jackliaocodetw/voomap","ilyaliao/voomap"],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyaliao%2Fvoomap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyaliao%2Fvoomap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyaliao%2Fvoomap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyaliao%2Fvoomap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ilyaliao","download_url":"https://codeload.github.com/ilyaliao/voomap/tar.gz/refs/heads/v0.1","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248650590,"owners_count":21139670,"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":["composable","composition-api","google-maps","google-maps-api","typescript","vue3"],"created_at":"2024-12-23T10:56:45.586Z","updated_at":"2025-10-09T02:23:37.194Z","avatar_url":"https://github.com/ilyaliao.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cbr\u003e\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://voomap.vercel.app/\" target=\"_blank\"\u003e\n\u003cimg src=\"https://voomap.vercel.app/voomap.svg\" alt=\"Voomap\" height=\"250\" width=\"250\"/\u003e\n\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\nEasy use of \u003cb\u003eGoogle Maps\u003c/b\u003e with \u003cb\u003eComposition API\u003c/b\u003e\n\n\u003c/p\u003e\n\n\u003e Voomap is built using Composition API and TypeScript.\n\n## 📦 Install\n\n```bash\nnpm i @voomap/map\n```\n\n## 🦄 Usage\n\n### Map\n\nBefore using `voomap`, the only thing you need to do is to [apply for a Google Maps API](https://developers.google.com/maps/documentation/javascript/get-api-key).\n\n```html\n\u003cscript setup lang=\"ts\"\u003e\n  import { GoogleMap } from '@voomap/map'\n  import { reactive } from 'vue'\n\n  const center = reactive\u003cgoogle.maps.LatLngLiteral\u003e({\n    lat: 25.0855388,\n    lng: 121.4791004,\n  })\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cGoogleMap :api-key=\"YOUR_GOOGLE_MAPS_API_KEY\" :center=\"center\" :zoom=\"11\" /\u003e\n\u003c/template\u003e\n```\n\nRefer to [documentations](https://voomap.vercel.app/) for more details.\n\n### Marker\n\nTo make it easy for you to use **Google Map**, you can simply add the components you need as child components, just as easily as with `element-ui`!\n\n```html\n\u003cscript setup lang=\"ts\"\u003e\n  import { GoogleMap, Marker } from '@voomap/map'\n  import { reactive } from 'vue'\n\n  const center = reactive\u003cgoogle.maps.LatLngLiteral\u003e({\n    lat: 25.0855388,\n    lng: 121.4791004,\n  })\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cGoogleMap :api-key=\"VITE_GOOGLE_MAP_API_KEY\" :center=\"center\" :zoom=\"11\"\u003e\n    \u003cMarker :position=\"center\" /\u003e\n  \u003c/GoogleMap\u003e\n\u003c/template\u003e\n```\n\n## 📃 Code Style\n\n[![code style](https://antfu.me/badge-code-style.svg)](https://github.com/antfu/eslint-config)\n\n## 👨‍🚀 Contributors\n\nThis project is not yet complete, and I warmly welcome feature requests and improvement suggestions. You can create an issue to initiate a discussion with me!\n\n## 📄 License\n\n[MIT](./LICENSE) License © 2024-PRESENT [Ilya Liao](https://github.com/ilyaliao)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filyaliao%2Fvoomap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filyaliao%2Fvoomap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filyaliao%2Fvoomap/lists"}