@trailstash/ultra 3.3.2 → 3.3.4
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/components/help-modal.js +1 -1
- package/docs/index.md +55 -0
- package/package.json +1 -1
package/components/help-modal.js
CHANGED
|
@@ -41,7 +41,7 @@ export class HelpModal extends HTMLElement {
|
|
|
41
41
|
</li>
|
|
42
42
|
<li>
|
|
43
43
|
Map powered by
|
|
44
|
-
<a target="_blank" href="https://
|
|
44
|
+
<a target="_blank" href="https://github.com/maplibre/maplibre-gl-js/"
|
|
45
45
|
>MapLibre GL JS</a
|
|
46
46
|
> <code>${maplibreVersion}</code>
|
|
47
47
|
</li>
|
package/docs/index.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Introduction
|
|
2
|
+
|
|
3
|
+
Ultra is a web-application made to simplify making maps with [MapLibre GL
|
|
4
|
+
JS](https://maplibre.org).
|
|
5
|
+
|
|
6
|
+
## Deployments
|
|
7
|
+
|
|
8
|
+
- Production version - [overpass-ultra.us](https://overpass-ultra.us) <small>([config](https://gitlab.com/trailstash/overpass-ultra/-/blob/main/config.js))</small>
|
|
9
|
+
- Development Version - [ultra.trailsta.sh](https://ultra.trailsta.sh) <small>([config](https://gitlab.com/trailstash/ultra/-/blob/main/config.js))</small>
|
|
10
|
+
- OHM version - [ohm.overpass-ultra.us](https://ohm.overpass-ultra.us) <small>([config](https://gitlab.com/trailstash/ohm-ultra/-/blob/main/config.js))</small>
|
|
11
|
+
|
|
12
|
+
## Documentation
|
|
13
|
+
|
|
14
|
+
The documentation for Ultra is available at <a target="_blank" href="/docs/">/docs</a>.
|
|
15
|
+
|
|
16
|
+
## Configuration
|
|
17
|
+
|
|
18
|
+
Various aspects of Ultra, such as styling, can be
|
|
19
|
+
configured via [YAML front-matter](/docs/yaml).
|
|
20
|
+
|
|
21
|
+
## Overpass Queries
|
|
22
|
+
|
|
23
|
+
Overpass API allows to query for OSM data by your own search criteria. For this purpose, it has a
|
|
24
|
+
specifically crafted query language: [Overpass
|
|
25
|
+
QL](https://wiki.openstreetmap.org/wiki/Overpass_API/Overpass_QL)
|
|
26
|
+
|
|
27
|
+
In addition to regular Overpass API queries one can use `{{bbox}}` to specify the bounding box
|
|
28
|
+
coordinates of the current map view.
|
|
29
|
+
|
|
30
|
+
## Styling
|
|
31
|
+
|
|
32
|
+
Ultra supports styling using an
|
|
33
|
+
[extended](/docs/style#ultra-maplibre-styles) version of the the [MapLibre
|
|
34
|
+
Style Spec](https://maplibre.org/maplibre-style-spec/).
|
|
35
|
+
|
|
36
|
+
See the [Styling](/docs/style) section for more information.
|
|
37
|
+
|
|
38
|
+
## About
|
|
39
|
+
|
|
40
|
+
Ultra is built by Daniel Schep.
|
|
41
|
+
|
|
42
|
+
You can contact me on [Mastodon](https://mapstodon.space/@trailstash).
|
|
43
|
+
|
|
44
|
+
## Feedback, Bug Reports, Feature Requests
|
|
45
|
+
|
|
46
|
+
While Ultra has been in development for a while, it should still be considered
|
|
47
|
+
experimental.
|
|
48
|
+
|
|
49
|
+
If you would like to report a bug or provide other feedback, please do so in the project's
|
|
50
|
+
[Issue Tracker](https://gitlab.com/trailstash/ultra/-/issues).
|
|
51
|
+
|
|
52
|
+
## Source Code</h4>
|
|
53
|
+
|
|
54
|
+
The [source code](https://gitlab.com/trailstash/ultra) of this application is released under the
|
|
55
|
+
[MIT license](https://gitlab.com/trailstash/ultra/-/blob/master/LICENSE).
|
package/package.json
CHANGED