{"id":38841768,"url":"https://github.com/workletjs/workletjs","last_synced_at":"2026-01-25T13:00:27.899Z","repository":{"id":319222384,"uuid":"1077366000","full_name":"workletjs/workletjs","owner":"workletjs","description":"📦 A modern map component library built with Angular and OpenLayers","archived":false,"fork":false,"pushed_at":"2025-12-19T03:34:27.000Z","size":4480,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-21T10:40:53.752Z","etag":null,"topics":["angular","gis","map","ngx-openlayers","openlayers","webgis","workletjs"],"latest_commit_sha":null,"homepage":"https://workletjs.github.io","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/workletjs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-16T06:46:08.000Z","updated_at":"2025-12-19T03:34:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"77ebbf67-3af1-47c2-a32f-a795fd7f3241","html_url":"https://github.com/workletjs/workletjs","commit_stats":null,"previous_names":["workletjs/workletjs"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/workletjs/workletjs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workletjs%2Fworkletjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workletjs%2Fworkletjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workletjs%2Fworkletjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workletjs%2Fworkletjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/workletjs","download_url":"https://codeload.github.com/workletjs/workletjs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/workletjs%2Fworkletjs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28753411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["angular","gis","map","ngx-openlayers","openlayers","webgis","workletjs"],"created_at":"2026-01-17T14:00:29.594Z","updated_at":"2026-01-25T13:00:27.871Z","avatar_url":"https://github.com/workletjs.png","language":"TypeScript","readme":"# Workletjs - Angular Map Component Library\n\n**Workletjs** is an **[Angular](https://angular.dev/)** map component library that provides seamless integration with **[OpenLayers](https://openlayers.org/)**, enabling developers to create interactive and customizable maps with ease.\n\nThis library developed under the **[Nx monorepo](https://nx.dev/docs/getting-started/tutorials/angular-monorepo-tutorial)** architecture and documented using **[NgDoc](https://ng-doc.com/)**.\n\n---\n\n## 🚀 Features\n\n- 📌 Built on [OpenLayers](https://openlayers.org/) - high-performance mapping engine\n- 🧱 Componentized architecture for interactive map development\n- 🧩 Built with [Nx](https://nx.dev) for scalable multi-project workspace\n- 📘 Component documentation powered by [NgDoc](https://ngdoc.io/)\n- 🧪 Testable and maintainable design\n- 🌐 Ideal for multi-layer visualization, spatial analysis, and geospatial applications\n\n---\n\n## 🛠 Prerequisites\n\nThis library depends on the following peer dependencies:\n\n- [`@angular/cdk`](https://material.angular.dev/cdk): ^20.2.0  \n- [`ol`](https://openlayers.org/): ^10.6.1\n\nMake sure these dependencies are installed in your project.\n\n## 📦 Installation\n\nInstall the peerDependencies.\n\n```bash\nnpm install ol @angular/cdk --save  \n// or\nyarn add ol @angular/cdk\n// or\npnpm add ol @angular/cdk\n```\n\nInstall this library.\n\n```bash\nnpm install @workletjs/ngx-openlayers --save\n// or\nyarn add @workletjs/ngx-openlayers\n// or \npnpm add @workletjs/ngx-openlayers\n```\n\n## 🔨 Usage\n\nImport the component modules you want to use into your component.\n\n```ts\nimport { WolMapModule } from '@workletjs/ngx-openlayers/map';\nimport { WolViewModule } from '@workletjs/ngx-openlayers/view';\n\n@Component({\n  imports: [WolMapModule, WolViewModule]\n})\nexport class AppComponent {}\n```\n\nAnd import style file link in angular.json.\n\n```diff\n{\n  \"styles\": [\n+    \"node_modules/ol/ol.css\"\n  ]\n}\n```\n\n## ✨ Example\n\nHere is a simple map with an OSM source.\n\n```ts\nimport { Component } from '@angular/core';\nimport { WolTileLayerModule } from '@workletjs/ngx-openlayers/layer/tile';\nimport { WolMapModule } from '@workletjs/ngx-openlayers/map';\nimport { WolOSMSourceModule } from '@workletjs/ngx-openlayers/source/osm';\nimport { WolViewModule } from '@workletjs/ngx-openlayers/view';\n\n@Component({\n  selector: 'app-root',\n  imports: [WolMapModule, WolViewModule, WolTileLayerModule, WolOSMSourceModule],\n  template: `\n    \u003cwol-map\u003e\n      \u003cwol-view [wolCenter]=\"[0, 0]\" [wolZoom]=\"2\" /\u003e\n      \u003cwol-tile-layer\u003e\n        \u003cwol-osm-source /\u003e\n      \u003c/wol-tile-layer\u003e\n    \u003c/wol-map\u003e\n  `,\n  styles: `\n    :host \u003e wol-map {\n      height: 400px;\n    }\n  `,\n})\nexport class AppComponent {}\n```\n\n---\n\n## 📖 Naming Conventions\n\n- Component selector prefix: wol-\\*\n\n- Input property prefix: wol\\* (e.g. wolControls, wolLayers)\n\n- Output event prefix: wol\\* (e.g. wolClick, wolViewChange)\n\n## ☀️ License\n\n[![GitHub license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](https://github.com/workletjs/workletjs/blob/master/LICENSE)","funding_links":[],"categories":["Third Party Components"],"sub_categories":["Maps"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkletjs%2Fworkletjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fworkletjs%2Fworkletjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fworkletjs%2Fworkletjs/lists"}