{"id":26062224,"url":"https://github.com/dpmcmlxxvi/olexp","last_synced_at":"2025-04-11T11:09:22.742Z","repository":{"id":44599810,"uuid":"54940877","full_name":"dpmcmlxxvi/olexp","owner":"dpmcmlxxvi","description":"A simple out-of-the-box web mapping solution.","archived":false,"fork":false,"pushed_at":"2022-02-05T19:03:15.000Z","size":11635,"stargazers_count":23,"open_issues_count":0,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-25T07:36:06.443Z","etag":null,"topics":["geospatial","gis","javascript","layout","openlayers","visualization","w2ui"],"latest_commit_sha":null,"homepage":"http://dpmcmlxxvi.github.io/olexp","language":"JavaScript","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/dpmcmlxxvi.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-03-29T02:52:36.000Z","updated_at":"2025-03-03T02:48:42.000Z","dependencies_parsed_at":"2022-09-26T21:50:47.828Z","dependency_job_id":null,"html_url":"https://github.com/dpmcmlxxvi/olexp","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpmcmlxxvi%2Folexp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpmcmlxxvi%2Folexp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpmcmlxxvi%2Folexp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpmcmlxxvi%2Folexp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dpmcmlxxvi","download_url":"https://codeload.github.com/dpmcmlxxvi/olexp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247934825,"owners_count":21020728,"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":["geospatial","gis","javascript","layout","openlayers","visualization","w2ui"],"created_at":"2025-03-08T15:55:08.812Z","updated_at":"2025-04-11T11:09:22.721Z","avatar_url":"https://github.com/dpmcmlxxvi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenLayers Explorer\r\n\r\n[![build](https://github.com/dpmcmlxxvi/olexp/actions/workflows/build.yml/badge.svg)](https://github.com/dpmcmlxxvi/olexp/actions)\r\n[![coverage](https://img.shields.io/coveralls/dpmcmlxxvi/olexp/master.svg)](https://coveralls.io/github/dpmcmlxxvi/olexp?branch=master)\r\n[![codacy](https://app.codacy.com/project/badge/Grade/6f1060e1205a4124a25bead230d1ec1c)](https://www.codacy.com/gh/dpmcmlxxvi/olexp/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=dpmcmlxxvi/olexp\u0026amp;utm_campaign=Badge_Grade)\r\n[![npm](https://badge.fury.io/js/olexp.svg)](https://badge.fury.io/js/olexp)\r\n\r\n[OpenLayers Explorer](https://github.com/dpmcmlxxvi/olexp) (olexp) is a simple\r\nout-of-the-box web mapping solution. It provides a web application to add,\r\nvisualize, and analyze spatial data. It provides the following common tools:\r\n\r\n- **Toolbar** with standard tools (e.g., measuring tools).\r\n- **Outline** to inspect and control the visible layers and overlays.\r\n- **Map** to display raster tiles, vectors, and overlays.\r\n\r\nIt's a Javascript library that combines the mapping power of\r\n[OpenLayers](http://openlayers.org/) and the layout management of\r\n[w2ui](http://w2ui.com).\r\n\r\n![](docs/web/img/olexp-example-screenshot.png)\r\n\r\n## GETTING STARTED\r\n\r\nAn explorer can be added to a map by adding its dependencies `OpenLayers`,\r\n`w2ui`, and `jQuery`\r\n\r\n```html\r\n\u003clink href=\"https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css\"\r\n  rel=\"stylesheet\" type=\"text/css\" /\u003e\r\n\u003clink href=\"https://unpkg.com/w2ui@1.4.3/w2ui.min.css\" rel=\"stylesheet\" type=\"text/css\"/\u003e\r\n\u003clink href=\"https://unpkg.com/olexp/dist/olexp.min.css\" rel=\"stylesheet\" type=\"text/css\" /\u003e\r\n\r\n\u003cscript src=\"https://unpkg.com/jquery@2.1.3/dist/jquery.min.js\"\u003e\u003c/script\u003e\r\n\u003cscript src=\"https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js\"\u003e\u003c/script\u003e\r\n\u003cscript src=\"https://unpkg.com/w2ui@1.4.3/w2ui.min.js\"\u003e\u003c/script\u003e\r\n\u003cscript src=\"https://unpkg.com/olexp/dist/olexp.min.js\"\u003e\u003c/script\u003e\r\n```\r\n\r\nthen adding a `div` element and provding the `id` to the `olexp.Explorer`\r\nconstructor\r\n\r\n```html\r\n\u003cdiv id=\"explorer\" style=\"height: 500px; width: 500px;\"\u003e\u003c/div\u003e\r\n\u003cscript\u003e\r\n  const explorer = new olexp.Explorer('explorer');\r\n\u003c/script\u003e\r\n```\r\n\r\n## DOCUMENTATION\r\n\r\nThe following help is available at the olexp\r\n[website](http://dpmcmlxxvi.github.io/olexp):\r\n\r\n- [Documentation](http://dpmcmlxxvi.github.io/olexp/web/)\r\n- [Getting Started](http://dpmcmlxxvi.github.io/olexp/web/start.html)\r\n- [Examples](http://dpmcmlxxvi.github.io/olexp/web/demos.html)\r\n- [API](http://dpmcmlxxvi.github.io/olexp/api/)\r\n\r\n## BUILD\r\n\r\nTo build and test the library locally:\r\n\r\n```shell\r\nnpm install\r\nnpm test\r\n```\r\n\r\nThe bundled library and stylesheet are at `dist/olexp.min.js` and\r\n`dist/olexp.min.css`.\r\n\r\n## LICENSE\r\n\r\nCopyright (c) 2015 Daniel Pulido \u003cmailto:dpmcmlxxvi@gmail.com\u003e\r\n\r\nSource code is released under the [MIT License](http://opensource.org/licenses/MIT).\r\nDocumentation is released under the [CC BY 4.0](http://creativecommons.org/licenses/by-sa/4.0/).\r\nIcons are from [OSGeo](http://trac.osgeo.org/osgeo/wiki) and released under the\r\n[CC BY 4.0](http://creativecommons.org/licenses/by-sa/4.0/).\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdpmcmlxxvi%2Folexp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdpmcmlxxvi%2Folexp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdpmcmlxxvi%2Folexp/lists"}