4 |
5 |
6 |
7 |
8 | <%= htmlWebpackPlugin.options.title %>
9 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | Copyright 2021 Leventhal Map & Education Center
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 |
5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6 |
7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "panel-truck",
3 | "version": "0.2.1",
4 | "private": true,
5 | "scripts": {
6 | "serve": "vue-cli-service serve",
7 | "build": "vue-cli-service build",
8 | "lint": "vue-cli-service lint",
9 | "build-wc-without-vue": "vue-cli-service build --target wc --name panel-truck ./src/PanelTruck.vue",
10 | "build-wc-with-vue": "vue-cli-service build --target wc --inline-vue --name panel-truck ./src/PanelTruck.vue"
11 | },
12 | "dependencies": {
13 | "@fortawesome/fontawesome-svg-core": "^1.2.32",
14 | "@fortawesome/free-solid-svg-icons": "^5.15.1",
15 | "@fortawesome/vue-fontawesome": "^2.0.2",
16 | "@vue/cli": "^4.5.13",
17 | "core-js": "^3.6.5",
18 | "markdown-it": "^12.0.4",
19 | "ol": "^6.4.3",
20 | "vue": "^2.6.11"
21 | },
22 | "devDependencies": {
23 | "@vue/cli-plugin-babel": "~4.5.0",
24 | "@vue/cli-plugin-eslint": "~4.5.0",
25 | "@vue/cli-service": "~4.5.0",
26 | "babel-eslint": "^10.1.0",
27 | "eslint": "^6.7.2",
28 | "eslint-plugin-vue": "^6.2.2",
29 | "vue-template-compiler": "^2.6.11"
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # panel-truck
2 |
3 | `panel-truck` is a web UI tool for creating interactive storylines using images and maps. It's especially useful for libraries and museums that want to create linear narrations on top of one or multiple deep-zoomable objects. Panel Truck supports IIIF, static images, and tiled web map layers as sources. It is trivial to embed into an existing web site, and requires only a simple JSON file to construct a presentation.
4 |
5 | ## Example
6 |
7 | See an [example Panel Truck presentation](https://geoservices.leventhalmap.org/panel-truck/example.html)
8 |
9 | ## Documentation
10 |
11 | See documentation on this page's [GitHub Wiki](https://cartinal.leventhalmap.org/documentation/panel-truck.html).
12 |
13 | ## License
14 |
15 | Panel Truck is released on the MIT License. If you use it in a project and find it useful, you might:
16 |
17 | - Let us know where you are using the project by sending us a note at
18 | - Tag us on social media @bplmaps
19 | - Retain the Leventhal Map & Education Center credit which is included by default in the final slide of a Panel Truck presentation
20 |
21 | LMEC is a small nonprofit institution, financially independent of the Boston Public Library. If you have institutional resources available, consider [making a donation](https://www.leventhalmap.org/donate/) to support our mission.
22 |
23 |
--------------------------------------------------------------------------------
/src/PanelTruck.vue:
--------------------------------------------------------------------------------
1 |
2 |