@basemaps/landing 6.32.0 → 6.33.0
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/CHANGELOG.md +24 -0
- package/dist/examples/index.openlayers.attribution.wmts.3857.html +1 -1
- package/dist/{index-6.32.0-b561bafc6e2941bb.js → index-6.33.0-32d4f61662fbd212.js} +2 -1
- package/dist/{index-6.32.0-467e63869a31f2e1.css → index-6.33.0-467e63869a31f2e1.css} +0 -0
- package/dist/{index-6.32.0-3fa6128da3e4d302.js → index-6.33.0-58a76ef19edcbfcf.js} +8 -8
- package/dist/index.html +2 -2
- package/dist/index.js +8 -8
- package/dist/lib/{attribution-6.32.0-431936fcac8e2647.js → attribution-6.33.0-431936fcac8e2647.js} +0 -0
- package/dist/lib/{attribution-6.32.0-a5dcb359f35150b9.js → attribution-6.33.0-a5dcb359f35150b9.js} +0 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [6.33.0](https://github.com/linz/basemaps/compare/v6.32.2...v6.33.0) (2022-08-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @basemaps/landing
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [6.32.2](https://github.com/linz/basemaps/compare/v6.32.1...v6.32.2) (2022-07-28)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @basemaps/landing
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [6.32.1](https://github.com/linz/basemaps/compare/v6.32.0...v6.32.1) (2022-07-28)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @basemaps/landing
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [6.32.0](https://github.com/linz/basemaps/compare/v6.31.0...v6.32.0) (2022-07-28)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package @basemaps/landing
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.3.1/css/ol.css"
|
|
8
8
|
type="text/css" />
|
|
9
9
|
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.3.1/build/ol.js"></script>
|
|
10
|
-
<script src="../lib/attribution-6.
|
|
10
|
+
<script src="../lib/attribution-6.33.0-a5dcb359f35150b9.js" integrity="sha512-pdyzWfNRULnTqKS/7l7Cpz01oahUjsKk1QO0F1C+ZACqxwM3yvvXQOF88SP78pWAf2EGystuQ0OdOTR42bkmEQ=="></script>
|
|
11
11
|
</head>
|
|
12
12
|
|
|
13
13
|
<body>
|
|
@@ -19674,6 +19674,7 @@ var ulid = factory();
|
|
|
19674
19674
|
var hasLocalStorage = () => typeof localStorage !== "undefined";
|
|
19675
19675
|
var OneDayMs = 24 * 60 * 60 * 1e3;
|
|
19676
19676
|
var ApiKeyExpireMs = 30 * OneDayMs;
|
|
19677
|
+
var ApiKeyMaxAgeMs = 91 * OneDayMs;
|
|
19677
19678
|
function newApiKey() {
|
|
19678
19679
|
const newKey = "c" + ulid().toLowerCase();
|
|
19679
19680
|
if (hasLocalStorage())
|
|
@@ -27712,7 +27713,7 @@ var Config = {
|
|
|
27712
27713
|
return "UA-23232486-4";
|
|
27713
27714
|
},
|
|
27714
27715
|
get Version() {
|
|
27715
|
-
return "v6.
|
|
27716
|
+
return "v6.33.0";
|
|
27716
27717
|
},
|
|
27717
27718
|
map: new MapConfig()
|
|
27718
27719
|
};
|
|
File without changes
|