{"id":14973293,"url":"https://github.com/quentinlampin/ngx-openlayers","last_synced_at":"2025-04-12T17:44:00.698Z","repository":{"id":47312042,"uuid":"68800092","full_name":"quentinlampin/ngx-openlayers","owner":"quentinlampin","description":"Angular2+ components for Openlayers 4.x","archived":false,"fork":false,"pushed_at":"2025-04-04T14:22:05.000Z","size":7033,"stargazers_count":138,"open_issues_count":69,"forks_count":97,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-04-12T09:04:26.522Z","etag":null,"topics":["angular-2","angular2","angular2-openlayers","angular4","ngx-openlayers","openlayers","openlayers4"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quentinlampin.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2016-09-21T09:10:46.000Z","updated_at":"2025-02-12T13:02:12.000Z","dependencies_parsed_at":"2023-11-15T10:41:04.280Z","dependency_job_id":"3523ee90-d1eb-4241-97b1-ea914a26fff1","html_url":"https://github.com/quentinlampin/ngx-openlayers","commit_stats":{"total_commits":180,"total_committers":33,"mean_commits":5.454545454545454,"dds":0.6722222222222223,"last_synced_commit":"960f36bfa4dd7a08a084dc2253fa4ec4661206fa"},"previous_names":["quentin-ol/angular2-openlayers","quentin-ol/ngx-openlayers"],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quentinlampin%2Fngx-openlayers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quentinlampin%2Fngx-openlayers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quentinlampin%2Fngx-openlayers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quentinlampin%2Fngx-openlayers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quentinlampin","download_url":"https://codeload.github.com/quentinlampin/ngx-openlayers/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248543849,"owners_count":21121838,"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":["angular-2","angular2","angular2-openlayers","angular4","ngx-openlayers","openlayers","openlayers4"],"created_at":"2024-09-24T13:48:30.574Z","updated_at":"2025-04-12T17:44:00.657Z","avatar_url":"https://github.com/quentinlampin.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ngx-openlayers [![Build Status](https://travis-ci.org/quentin-ol/ngx-openlayers.svg?branch=master)](https://travis-ci.org/quentin-ol/ngx-openlayers)[![Join the chat at https://gitter.im/ngx-openlayers](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ngx-openlayers?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n## Installation\n\nTo install this library, run:\n\n```bash\nnpm install ngx-openlayers --save\n```\n\n## Example\n\nHere is a \"minimal\" map example that fetches tiles from OpenStreetMap and center the map in Meylan (France):\n\nin `app.module.ts`:\n```js\n...\nimport { AngularOpenlayersModule } from \"ngx-openlayers\";\n...\n\n@NgModule({\n  imports: [\n    ...\n    AngularOpenlayersModule\n  ],\n  ...\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n```\n\nin `app.component.html`:\n```html\n\u003caol-map [width]=\"'500px'\" [height]=\"'300'\"\u003e\n    \u003caol-view [zoom]=\"2\"\u003e\n        \u003caol-coordinate [x]=\"5.795122\" [y]=\"45.210225\" [srid]=\"'EPSG:4326'\"\u003e\u003c/aol-coordinate\u003e\n    \u003c/aol-view\u003e\n    \u003caol-layer-tile\u003e\n        \u003caol-source-osm\u003e\u003c/aol-source-osm\u003e\n    \u003c/aol-layer-tile\u003e\n\u003c/aol-map\u003e\n```\n\n## Documentation\n\nThe API is documented in [documentation](/documentation/)\n\n## Getting Help\n\nJoin us at our Gitter: [https://gitter.im/ngx-openlayers](https://gitter.im/ngx-openlayers)\n\n## Development\n\nTo generate all `*.js`, `*.js.map` and `*.d.ts` files:\n\n```bash\nnpm run ngc\n```\n\nTo lint all `*.ts` files:\n\n```bash\nnpm run lint\n```\n\nLive example (reload on code changes):\n\n```bash\nnpm install -g @angular/cli\ncd example\nnpm install\nng serve\n```\n\nLive example will be viewable at locahost:4200\n\n## Contributing\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request and enjoy! :D\n\n## License\n\nMPL-2.0 - Quentin Lampin \u003cquentin.lampin@orange.com\u003e Copyright 2017 Orange\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquentinlampin%2Fngx-openlayers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquentinlampin%2Fngx-openlayers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquentinlampin%2Fngx-openlayers/lists"}