Skip to content

Commit

Permalink
Updating gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
gberaudo committed Aug 24, 2023
1 parent 8501956 commit 6a614ed
Show file tree
Hide file tree
Showing 1,206 changed files with 923,161 additions and 1,463,204 deletions.
75 changes: 71 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,72 @@
# Changelog

# v 2.15.2 - 2023-08-15

* Changes
* Ensure published olcs package only contains javascript (no typescript)
* Add computeDPIForPDF function to help creating pdfs with mapfish print
* Port to OL 7.5 and CesiumJS 1.108
* Fix changing style of MVTImageryProvider
* Fix panning and pinch movements
* Deprecation
* computeRectangle and RectangleOutput should now be imported from printUtils

# v 2.15 - 2023-07-26

* Changes
* Add function to grab a screenshot from rendered Cesium globe (client side printing)
* Port to OL 7.4 and CesiumJS 1.107

# v 2.14.0 - 2023-04-26

* Breaking changes
* Use named exports

* Changes
* port to CesiumJS 1.104 and OL 7.3

# v 2.13 - 2021-05-20

* Changes
* Port to CesiumJS 1.81
* Port dev environment to webpack5
* Copy canvas image when cloning overlay
* Use tile fonction in MVT imagery provider (handle minus, ...)

# v 2.12 - 2021-01-18

* Changes
* Delete the obsolete plugins directory.
* Add MVTImageryProvider, an experimental Cesium imagery provider for
MapBox Vector Tiles. It uses OpenLayers to render the tiles and handles
native OpenLayers style functions.
* Update to CesiumJS 1.77 and OpenLayers 6.5
* Expose the resolution from/to distance functions in core

# v 2.11.3 - 2020-09-01

* Changes
* Port to OpenLayers 6.4, fix grabbing issue.

# v 2.11.1 - 2020-08-04

* Changes
* Remove wrong pixelSize param from getPixelDimensions function

# v 2.11 - 2020-08-04

* Changes
* Handle some custom matrix size for WMTS
* Update to Cesium 1.70 and add peer dependencies
* Add missing 'result' param to getPixelDimensions function

# v 2.10 - 2019-10-10

* Changes
* Add a WMTS example.
* Port to Cesium 1.62.
* Port to OpenLayers 6 while staying compatible with OpenLayers 5.

# v 2.9 - 2019-04-05

* Changes
Expand Down Expand Up @@ -305,9 +372,9 @@
curves instead of straight lines. This functionality can be activated by
setting the olcs.polygon_kind property to 'rectangle' on the OpenLayers
geometry.
* Add support to set a proxy for Cesium to load layer not accessible
due to missing CORS headers (eg. when user can't modify configuration
of the mapservice used). This functionality can be activated by
* Add support to set a proxy for Cesium to load layer not accessible
due to missing CORS headers (eg. when user can't modify configuration
of the mapservice used). This functionality can be activated by
setting the olcs.proxy property to the OpenLayers source.

## v 1.15 - 2016-04-28
Expand Down Expand Up @@ -415,7 +482,7 @@
* Core static functions for converting from OL3 features to Cesium primitives
have been moved into a class designed for inheritance.
The `olcs.FeatureConverter` may be extended and passed as a parameter of
the `olcs.VectorSynchronizer` constructor. See the synchronizer function
the `olcs.VectorSynchronizer` constructor. See the synchronizer function
parameter of the `olcs.OLCesium` constructor. Subclassing requires that
the subclass and the library code be compiled together.
One way of migrating existing code is to define a global variable:
Expand Down
1 change: 0 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ google_analytics:
show_downloads: true
theme: jekyll-theme-architect
exclude: []
include: [apidoc,apidoc/modules/,apidoc/modules/_olcs_olcesium_.html]
gems:
- jekyll-mentions
1 change: 1 addition & 0 deletions apidoc/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
865 changes: 0 additions & 865 deletions apidoc/assets/css/main.css

This file was deleted.

7 changes: 0 additions & 7 deletions apidoc/assets/css/main.css.map

This file was deleted.

113 changes: 113 additions & 0 deletions apidoc/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
:root {
--light-hl-0: #795E26;
--dark-hl-0: #DCDCAA;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-hl-2: #A31515;
--dark-hl-2: #CE9178;
--light-hl-3: #0000FF;
--dark-hl-3: #569CD6;
--light-hl-4: #AF00DB;
--dark-hl-4: #C586C0;
--light-hl-5: #001080;
--dark-hl-5: #9CDCFE;
--light-hl-6: #0070C1;
--dark-hl-6: #4FC1FF;
--light-hl-7: #008000;
--dark-hl-7: #6A9955;
--light-hl-8: #800000;
--dark-hl-8: #808080;
--light-hl-9: #800000;
--dark-hl-9: #569CD6;
--light-hl-10: #000000FF;
--dark-hl-10: #D4D4D4;
--light-hl-11: #E50000;
--dark-hl-11: #9CDCFE;
--light-hl-12: #0000FF;
--dark-hl-12: #CE9178;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--code-background: var(--dark-code-background);
} }

:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--code-background: var(--light-code-background);
}

:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--code-background: var(--dark-code-background);
}

.hl-0 { color: var(--hl-0); }
.hl-1 { color: var(--hl-1); }
.hl-2 { color: var(--hl-2); }
.hl-3 { color: var(--hl-3); }
.hl-4 { color: var(--hl-4); }
.hl-5 { color: var(--hl-5); }
.hl-6 { color: var(--hl-6); }
.hl-7 { color: var(--hl-7); }
.hl-8 { color: var(--hl-8); }
.hl-9 { color: var(--hl-9); }
.hl-10 { color: var(--hl-10); }
.hl-11 { color: var(--hl-11); }
.hl-12 { color: var(--hl-12); }
pre, code { background: var(--code-background); }
Binary file removed apidoc/assets/images/icons.png
Binary file not shown.
Binary file removed apidoc/assets/images/[email protected]
Binary file not shown.
Binary file removed apidoc/assets/images/widgets.png
Binary file not shown.
Binary file removed apidoc/assets/images/[email protected]
Binary file not shown.
5 changes: 0 additions & 5 deletions apidoc/assets/js/main.js

This file was deleted.

3 changes: 0 additions & 3 deletions apidoc/assets/js/search.js

This file was deleted.

58 changes: 58 additions & 0 deletions apidoc/assets/main.js

Large diffs are not rendered by default.

Loading

0 comments on commit 6a614ed

Please sign in to comment.