@trailstash/ultra 3.1.0-beta0 → 3.1.0-beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/components/help-modal.js +7 -0
- package/mkdocs.yml +4 -4
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
Ultra is a web-application made to simplify making maps with [MapLibre GL
|
|
4
4
|
JS](https://maplibre.org).
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## Deployments
|
|
7
|
+
* Production version - [overpass-ultra.us](https://overpass-ultra.us) <small>([config](https://gitlab.com/trailstash/overpass-ultra/-/blob/main/config.js))</small>
|
|
8
|
+
* Development Version - [ultra.trailsta.sh](https://ultra.trailsta.sh) <small>([config](./config.js))</small>
|
|
9
|
+
* OHM version - [ohm.overpass-ultra.us](https://ohm.overpass-ultra.us) <small>([config](https://gitlab.com/trailstash/ohm-ultra/-/blob/main/config.js))</small>
|
|
7
10
|
|
|
8
11
|
The customization of the map complies with an [extended](https://overpass-ultra.us/docs/style#ultra-maplibre-styles) version
|
|
9
12
|
of the the [MapLibre Style Spec](https://maplibre.org/maplibre-style-spec/).
|
package/components/help-modal.js
CHANGED
|
@@ -3,6 +3,7 @@ import { h, t } from "../lib/dom.js";
|
|
|
3
3
|
import { style as buttonCSS } from "./button.js";
|
|
4
4
|
import { normalizeCSS } from "../lib/normalize.js";
|
|
5
5
|
import { toQueryParams } from "../lib/queryParams.js";
|
|
6
|
+
import { version } from "../package.json";
|
|
6
7
|
import { version as maplibreVersion } from "maplibre-gl/package.json";
|
|
7
8
|
import { version as osmtogeojsonVersion } from "osmtogeojson/package.json";
|
|
8
9
|
import readme from "../README.md";
|
|
@@ -66,6 +67,12 @@ export class HelpModal extends HTMLElement {
|
|
|
66
67
|
</ul>
|
|
67
68
|
<h4>Software & Libraries</h4>
|
|
68
69
|
<ul>
|
|
70
|
+
<li>
|
|
71
|
+
IDE powered by
|
|
72
|
+
<a target="_blank" href="https://gitlab.com/trailstash/ultra"
|
|
73
|
+
>@trailstash/ultra</a
|
|
74
|
+
> <code>${version}</code>
|
|
75
|
+
</li>
|
|
69
76
|
<li>
|
|
70
77
|
Map powered by
|
|
71
78
|
<a target="_blank" href="https://maplibre.org/projects/maplibre-gl-js/"
|
package/mkdocs.yml
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
site_name:
|
|
2
|
-
site_url: https://
|
|
3
|
-
repo_url: https://gitlab.com/trailstash/
|
|
1
|
+
site_name: Ultra
|
|
2
|
+
site_url: https://ultra.trailsta.sh/docs/
|
|
3
|
+
repo_url: https://gitlab.com/trailstash/ultra/
|
|
4
4
|
copyright: '<a href="https://creativecommons.org/publicdomain/zero/1.0/deed.en">CC0 1.0 Universal</a>'
|
|
5
5
|
edit_uri: ''
|
|
6
|
-
site_dir:
|
|
6
|
+
site_dir: dist/docs
|
|
7
7
|
theme:
|
|
8
8
|
name: material
|
|
9
9
|
custom_dir: docs/overrides
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "3.1.0-
|
|
6
|
+
"version": "3.1.0-beta3",
|
|
7
7
|
"description": "A web based tool for making MapLibre GL maps with data from sources such as Overpass, GeoJSON, GPX, KML, TCX, etc",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"scripts": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"build:maplibre-examples-docs": "node ./build-examples-docs.js MapLibre-Examples",
|
|
15
15
|
"build:docs": "mkdocs build",
|
|
16
16
|
"start:docs": "mkdocs serve",
|
|
17
|
-
"build:pages": "mkdir -p public && cp -Lr
|
|
17
|
+
"build:pages": "mkdir -p public && cp -Lr dist/* public/.",
|
|
18
18
|
"start": "node ./bin/run.js serve",
|
|
19
19
|
"format": "prettier --print-width=80 --write '**/*.js' '**/*.json' README.md '**/*.css'",
|
|
20
20
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -38,12 +38,10 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://overpass-ultra.us/",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/node": "^22.
|
|
41
|
+
"@types/node": "^22.6.1",
|
|
42
42
|
"@unvt/sprite-one": "^0.1.1",
|
|
43
|
-
"esbuild": "^0.23.1",
|
|
44
|
-
"esbuild-plugin-copy": "^2.1.1",
|
|
45
43
|
"prettier": "^3.3.3",
|
|
46
|
-
"puppeteer": "^23.
|
|
44
|
+
"puppeteer": "^23.4.0",
|
|
47
45
|
"svg2png": "^4.1.1",
|
|
48
46
|
"ts-node": "^10.9.2"
|
|
49
47
|
},
|
|
@@ -51,20 +49,22 @@
|
|
|
51
49
|
"dependencies": {
|
|
52
50
|
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
|
53
51
|
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
|
54
|
-
"@oclif/core": "^4.0.
|
|
52
|
+
"@oclif/core": "^4.0.23",
|
|
55
53
|
"@tmcw/togeojson": "^5.8.1",
|
|
56
54
|
"@trailstash/maplibre-component": "^1.0.1",
|
|
57
55
|
"@turf/bbox": "^7.1.0",
|
|
58
56
|
"deep-equal": "^2.2.3",
|
|
59
|
-
"liquidjs": "^10.
|
|
57
|
+
"liquidjs": "^10.17.0",
|
|
60
58
|
"lodash.pick": "^4.4.0",
|
|
61
59
|
"lz-string": "^1.5.0",
|
|
62
|
-
"maplibre-gl": "^4.7.
|
|
63
|
-
"marked": "^14.1.
|
|
60
|
+
"maplibre-gl": "^4.7.1",
|
|
61
|
+
"marked": "^14.1.2",
|
|
64
62
|
"normalize.css": "^8.0.1",
|
|
65
63
|
"osmtogeojson": "^3.0.0-beta.5",
|
|
66
|
-
"pmtiles": "^3.0
|
|
67
|
-
"yaml": "^2.5.1"
|
|
64
|
+
"pmtiles": "^3.2.0",
|
|
65
|
+
"yaml": "^2.5.1",
|
|
66
|
+
"esbuild": "^0.24.0",
|
|
67
|
+
"esbuild-plugin-copy": "^2.1.1"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@maplibre/maplibre-gl-style-spec": "20.x"
|