itowns 2.33.0 → 2.36.1
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/CONTRIBUTORS.md +1 -0
- package/README.md +1 -1
- package/changelog.md +198 -0
- package/dist/debug.js +2 -16
- package/dist/debug.js.LICENSE.txt +6 -0
- package/dist/debug.js.map +1 -1
- package/dist/itowns.js +2 -18
- package/dist/itowns.js.LICENSE.txt +28 -0
- package/dist/itowns.js.map +1 -1
- package/examples/3dtiles_basic.html +2 -2
- package/examples/config.json +4 -1
- package/examples/entwine_simple_loader.html +3 -2
- package/examples/js/plugins/DragNDrop.js +24 -20
- package/examples/js/plugins/FeatureToolTip.js +10 -4
- package/examples/layers/JSONLayers/Ortho.json +1 -1
- package/examples/misc_camera_traveling.html +148 -0
- package/examples/misc_custom_controls.html +96 -0
- package/examples/misc_custom_label.html +148 -0
- package/examples/source_file_geojson_3d.html +1 -3
- package/examples/source_file_geojson_raster.html +88 -64
- package/examples/source_file_kml_raster.html +3 -0
- package/examples/source_stream_wfs_25d.html +11 -24
- package/examples/source_stream_wfs_3d.html +3 -8
- package/examples/vector_tile_raster_2d.html +4 -11
- package/examples/vector_tile_raster_3d.html +4 -11
- package/examples/view_25d_map.html +28 -0
- package/examples/view_immersive.html +1 -3
- package/examples/view_multi_25d.html +1 -1
- package/lib/Controls/FirstPersonControls.js +19 -17
- package/lib/Controls/FlyControls.js +9 -13
- package/lib/Controls/GlobeControls.js +243 -307
- package/lib/Controls/PlanarControls.js +11 -18
- package/lib/Controls/StateControl.js +445 -58
- package/lib/Controls/StreetControls.js +6 -2
- package/lib/Converter/Feature2Mesh.js +26 -7
- package/lib/Converter/Feature2Texture.js +8 -4
- package/lib/Converter/convertToTile.js +6 -2
- package/lib/Converter/textureConverter.js +5 -1
- package/lib/Core/3DTiles/C3DTBatchTableHierarchyExtension.js +1 -1
- package/lib/Core/3DTiles/C3DTBoundingVolume.js +6 -2
- package/lib/Core/3DTiles/C3DTileset.js +7 -3
- package/lib/Core/AnimationPlayer.js +21 -2
- package/lib/Core/EntwinePointTileNode.js +6 -2
- package/lib/Core/Feature.js +35 -34
- package/lib/Core/Geographic/Coordinates.js +62 -2
- package/lib/Core/Geographic/Crs.js +15 -0
- package/lib/Core/Geographic/Extent.js +105 -13
- package/lib/Core/Label.js +59 -19
- package/lib/Core/MainLoop.js +1 -1
- package/lib/Core/Math/Ellipsoid.js +32 -10
- package/lib/Core/Picking.js +6 -2
- package/lib/Core/PointCloudNode.js +6 -2
- package/lib/Core/PotreeNode.js +6 -2
- package/lib/Core/Prefab/Globe/Atmosphere.js +6 -2
- package/lib/Core/Prefab/Globe/BuilderEllipsoidTile.js +7 -3
- package/lib/Core/Prefab/Globe/GlobeLayer.js +6 -2
- package/lib/Core/Prefab/Globe/SkyShader.js +6 -2
- package/lib/Core/Prefab/GlobeView.js +6 -2
- package/lib/Core/Prefab/Planar/PlanarLayer.js +6 -2
- package/lib/Core/Prefab/Planar/PlanarTileBuilder.js +6 -2
- package/lib/Core/Prefab/PlanarView.js +7 -3
- package/lib/Core/Prefab/TileBuilder.js +5 -1
- package/lib/Core/Prefab/computeBufferTileGeometry.js +6 -2
- package/lib/Core/Scheduler/Scheduler.js +1 -1
- package/lib/Core/Style.js +80 -34
- package/lib/Core/TileGeometry.js +6 -2
- package/lib/Core/TileMesh.js +10 -5
- package/lib/Core/View.js +38 -11
- package/lib/Layer/C3DTilesLayer.js +7 -3
- package/lib/Layer/ElevationLayer.js +9 -16
- package/lib/Layer/EntwinePointTileLayer.js +6 -2
- package/lib/Layer/FeatureGeometryLayer.js +78 -0
- package/lib/Layer/GeometryLayer.js +1 -1
- package/lib/Layer/LabelLayer.js +28 -4
- package/lib/Layer/Layer.js +7 -3
- package/lib/Layer/OrientedImageLayer.js +7 -3
- package/lib/Layer/PointCloudLayer.js +7 -3
- package/lib/Layer/PotreeLayer.js +6 -2
- package/lib/Layer/RasterLayer.js +1 -1
- package/lib/Layer/TiledGeometryLayer.js +7 -3
- package/lib/Main.js +35 -3
- package/lib/MainBundle.js +6 -2
- package/lib/Parser/B3dmParser.js +7 -3
- package/lib/Parser/CameraCalibrationParser.js +5 -1
- package/lib/Parser/GeoJsonParser.js +1 -1
- package/lib/Parser/LASParser.js +5 -1
- package/lib/Parser/PntsParser.js +5 -1
- package/lib/Parser/PotreeBinParser.js +6 -2
- package/lib/Parser/PotreeCinParser.js +5 -1
- package/lib/Parser/ShapefileParser.js +1 -1
- package/lib/Parser/VectorTileParser.js +2 -2
- package/lib/Parser/deprecated/LegacyGLTFLoader.js +82 -53
- package/lib/Process/3dTilesProcessing.js +50 -11
- package/lib/Process/FeatureProcessing.js +8 -5
- package/lib/Process/LayeredMaterialNodeProcessing.js +1 -1
- package/lib/Process/ObjectRemovalHelper.js +6 -3
- package/lib/Provider/3dTilesProvider.js +5 -1
- package/lib/Provider/Fetcher.js +1 -1
- package/lib/Provider/PointCloudProvider.js +5 -1
- package/lib/Provider/URLBuilder.js +1 -1
- package/lib/Renderer/Camera.js +6 -2
- package/lib/Renderer/ColorLayersOrdering.js +1 -1
- package/lib/Renderer/CommonMaterial.js +5 -1
- package/lib/Renderer/Label2DRenderer.js +21 -13
- package/lib/Renderer/LayeredMaterial.js +9 -4
- package/lib/Renderer/OBB.js +8 -4
- package/lib/Renderer/OrientedImageCamera.js +6 -2
- package/lib/Renderer/OrientedImageMaterial.js +6 -2
- package/lib/Renderer/PointsMaterial.js +6 -2
- package/lib/Renderer/RasterTile.js +29 -7
- package/lib/Renderer/Shader/ShaderChunk.js +9 -5
- package/lib/Renderer/SphereHelper.js +5 -1
- package/lib/Renderer/c3DEngine.js +20 -4
- package/lib/Source/TMSSource.js +14 -2
- package/lib/Source/VectorTilesSource.js +16 -0
- package/lib/ThreeExtended/WebGL.js +75 -51
- package/lib/ThreeExtended/loaders/DDSLoader.js +176 -148
- package/lib/ThreeExtended/loaders/DRACOLoader.js +291 -276
- package/lib/ThreeExtended/loaders/GLTFLoader.js +2438 -1957
- package/lib/Utils/CameraUtils.js +14 -10
- package/lib/Utils/DEMUtils.js +8 -4
- package/lib/Utils/FeaturesUtils.js +1 -1
- package/lib/Utils/OrientationUtils.js +5 -1
- package/lib/Utils/placeObjectOnGround.js +5 -1
- package/package.json +32 -32
package/CONTRIBUTORS.md
CHANGED
|
@@ -10,6 +10,7 @@ The following people have contributed to iTowns 2.
|
|
|
10
10
|
* [Grégoire Maillet](https://github.com/gmaillet)
|
|
11
11
|
* [Guillaume Liégard](https://github.com/gliegard)
|
|
12
12
|
* [Adrien Berthet](https://github.com/zarov)
|
|
13
|
+
* [Madec Germerie-Guizouarn](https://github.com/mgermerie)
|
|
13
14
|
|
|
14
15
|
* [Oslandia](http://www.oslandia.com)
|
|
15
16
|
* [Vincent Picavet](https://github.com/vpicavet)
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# iTowns
|
|
3
3
|
|
|
4
4
|
[](https://coveralls.io/github/iTowns/itowns?branch=master)
|
|
5
|
-
[](https://github.com/iTowns/itowns/actions/workflows/integration.yml?query=branch%3Amaster)
|
|
6
6
|
[](https://deepscan.io/dashboard#view=project&tid=2856&pid=10991&bid=159107)
|
|
7
7
|
|
|
8
8
|
## What is it?
|
package/changelog.md
CHANGED
|
@@ -1,3 +1,201 @@
|
|
|
1
|
+
<a name="2.36.1"></a>
|
|
2
|
+
## [2.36.1](https://github.com/iTowns/itowns/compare/v2.36.0...v2.36.1) (2021-11-22)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **View:** wrong calculate pick radius with distance/zoom. ([d5efa03](https://github.com/iTowns/itowns/commit/d5efa03))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Workflow and chores
|
|
11
|
+
|
|
12
|
+
* release v2.36.1 ([b0cf534](https://github.com/iTowns/itowns/commit/b0cf534))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
<a name="2.36.0"></a>
|
|
17
|
+
# [2.36.0](https://github.com/iTowns/itowns/compare/v2.35.0...v2.36.0) (2021-11-18)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **Coordinates:** add methods to calculate distance between coordinates. ([acdf643](https://github.com/iTowns/itowns/commit/acdf643))
|
|
23
|
+
* **Crs:** add isGeocentric method. ([1ab76c8](https://github.com/iTowns/itowns/commit/1ab76c8))
|
|
24
|
+
* **Extent:** add methods to calculate extent dimensions. ([ed583d9](https://github.com/iTowns/itowns/commit/ed583d9))
|
|
25
|
+
* **Label:** add parameter to change labels padding property ([33f8680](https://github.com/iTowns/itowns/commit/33f8680))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **ColorLayer:** fix shader when transparent is true ([1a4f44d](https://github.com/iTowns/itowns/commit/1a4f44d))
|
|
31
|
+
* **ElevationLayer:** scale elevation isn't updated ([26d72da](https://github.com/iTowns/itowns/commit/26d72da))
|
|
32
|
+
* **Ellipsoid:** wrong geodesic distance. ([4d462f2](https://github.com/iTowns/itowns/commit/4d462f2))
|
|
33
|
+
* **Extent:** fix wrong calculating when apply matrix. ([04abdd2](https://github.com/iTowns/itowns/commit/04abdd2))
|
|
34
|
+
* **Feature:** wrong altitude and altitude limits. ([4746e86](https://github.com/iTowns/itowns/commit/4746e86))
|
|
35
|
+
* **Feature2Mesh:** set scale transformation from FeatureCollection. ([0f5cd07](https://github.com/iTowns/itowns/commit/0f5cd07))
|
|
36
|
+
* **FirstPersonControls:** prevent context menu from poping ([94bfd57](https://github.com/iTowns/itowns/commit/94bfd57))
|
|
37
|
+
* **GlobeControls:** fix black screen when zooming outside globe ([3e0f23f](https://github.com/iTowns/itowns/commit/3e0f23f))
|
|
38
|
+
* **label2DRenderer:** add frustum culling in global labels culling. ([5ba4e9d](https://github.com/iTowns/itowns/commit/5ba4e9d))
|
|
39
|
+
* **Point/3Dtiles:** wrong geographical extent property for points cloud and 3Dtiles. ([c663ce4](https://github.com/iTowns/itowns/commit/c663ce4))
|
|
40
|
+
* **Style:** copy order property when copying style ([cab78ba](https://github.com/iTowns/itowns/commit/cab78ba))
|
|
41
|
+
* **VectorTileSource:** set style parent with style Layer ([aba0743](https://github.com/iTowns/itowns/commit/aba0743))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Examples
|
|
45
|
+
|
|
46
|
+
* **3dtiles_basic:** update 3dtiles sources url ([50d6733](https://github.com/iTowns/itowns/commit/50d6733))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Code Refactoring
|
|
50
|
+
|
|
51
|
+
* **debug:** remove id text in OBB helper. ([d033279](https://github.com/iTowns/itowns/commit/d033279))
|
|
52
|
+
* **examples:** add wfs labels in 2.5d examples. ([944e412](https://github.com/iTowns/itowns/commit/944e412))
|
|
53
|
+
* **Extent:** throw error if the projection is geocentric. ([e0048f7](https://github.com/iTowns/itowns/commit/e0048f7))
|
|
54
|
+
* **Extent:** use Extent.planarDimensions instead of Extent.dimensions ([023d5fa](https://github.com/iTowns/itowns/commit/023d5fa))
|
|
55
|
+
* **OBBHelper:** remove OBBHelper text. ([1e2fc31](https://github.com/iTowns/itowns/commit/1e2fc31))
|
|
56
|
+
* **TerrainMaterial:** rename fogDepth -> vFogDepth ([7d162ec](https://github.com/iTowns/itowns/commit/7d162ec))
|
|
57
|
+
* **View:** change label margin default. ([8c6edf5](https://github.com/iTowns/itowns/commit/8c6edf5))
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Workflow and chores
|
|
61
|
+
|
|
62
|
+
* release v2.36.0 ([091c59b](https://github.com/iTowns/itowns/commit/091c59b))
|
|
63
|
+
* add contributor. ([323b046](https://github.com/iTowns/itowns/commit/323b046))
|
|
64
|
+
* update packages. ([ef204f9](https://github.com/iTowns/itowns/commit/ef204f9))
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Documentation
|
|
68
|
+
|
|
69
|
+
* **Ellipsoid:** minor fix on geodesicDistance doc ([a0cd2a3](https://github.com/iTowns/itowns/commit/a0cd2a3))
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<a name="2.35.0"></a>
|
|
74
|
+
# [2.35.0](https://github.com/iTowns/itowns/compare/v2.34.0...v2.35.0) (2021-09-16)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### Features
|
|
78
|
+
|
|
79
|
+
* **AnimationPlayer:** add a callback ran at each animation frame ([1280ce0](https://github.com/iTowns/itowns/commit/1280ce0))
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
### Bug Fixes
|
|
83
|
+
|
|
84
|
+
* **c3DEngine:** fix error when input renderer.domElement is a canvas ([14567c1](https://github.com/iTowns/itowns/commit/14567c1))
|
|
85
|
+
* **CameraUtils:** CameraTransformOptions parameter stopPlaceOnGroundAtEnd is no longer overriden ([7f3a542](https://github.com/iTowns/itowns/commit/7f3a542))
|
|
86
|
+
* **CameraUtils:** compute precise altitude when setting CameraRig ([011fcbc](https://github.com/iTowns/itowns/commit/011fcbc))
|
|
87
|
+
* **Feature2Mesh:** addapt indices array type from the size of polygon ([378c092](https://github.com/iTowns/itowns/commit/378c092))
|
|
88
|
+
* **GlobeControls:** fix jittering move globe when devtool is open ([825841c](https://github.com/iTowns/itowns/commit/825841c))
|
|
89
|
+
* **Label:** clamp labels altitude over 0 ([ddd59e0](https://github.com/iTowns/itowns/commit/ddd59e0))
|
|
90
|
+
* **Label:** enforce Labels div top position to 0 ([08528d7](https://github.com/iTowns/itowns/commit/08528d7))
|
|
91
|
+
* **ShapefileParser:** prevent ignoring input crs wen given ([d2b90b7](https://github.com/iTowns/itowns/commit/d2b90b7))
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Examples
|
|
95
|
+
|
|
96
|
+
* **camera traveling:** add an example where user can pick points and have camera traveling between those points ([6e79ff3](https://github.com/iTowns/itowns/commit/6e79ff3))
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Code Refactoring
|
|
100
|
+
|
|
101
|
+
* **Controls:** change deprecated mouseWheel event to wheel event ([923d10c](https://github.com/iTowns/itowns/commit/923d10c))
|
|
102
|
+
* **Controls:** handle mouse events in StateControls ([ae1c30b](https://github.com/iTowns/itowns/commit/ae1c30b))
|
|
103
|
+
* **Controls:** switch context menu management in StateControl ([5fa010b](https://github.com/iTowns/itowns/commit/5fa010b))
|
|
104
|
+
* **Controls:** switch enabled property from GlobeControls to StateControl ([76130b4](https://github.com/iTowns/itowns/commit/76130b4))
|
|
105
|
+
* **Controls:** switch keyboard management to StateControls ([a392a7b](https://github.com/iTowns/itowns/commit/a392a7b))
|
|
106
|
+
* **Controls:** switch wheel management to StateControl ([4e64b75](https://github.com/iTowns/itowns/commit/4e64b75))
|
|
107
|
+
* **StateControl:** factorise handleMouse in pointer methods ([0e626d8](https://github.com/iTowns/itowns/commit/0e626d8))
|
|
108
|
+
* **StateControls:** simplify setFromOptions method ([a7d175f](https://github.com/iTowns/itowns/commit/a7d175f))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Workflow and chores
|
|
112
|
+
|
|
113
|
+
* release v2.35.0 ([ade35e8](https://github.com/iTowns/itowns/commit/ade35e8))
|
|
114
|
+
* **examples:** change geoportail key. ([36f0f40](https://github.com/iTowns/itowns/commit/36f0f40))
|
|
115
|
+
* move babel preset-env options to .babelrc ([ad22bcc](https://github.com/iTowns/itowns/commit/ad22bcc))
|
|
116
|
+
* remove import three examples polyfill. ([48d52ae](https://github.com/iTowns/itowns/commit/48d52ae))
|
|
117
|
+
* up three 131.2 ([aed4dbc](https://github.com/iTowns/itowns/commit/aed4dbc))
|
|
118
|
+
* up to webpack 5. ([ea36982](https://github.com/iTowns/itowns/commit/ea36982))
|
|
119
|
+
* update packages. ([909e96e](https://github.com/iTowns/itowns/commit/909e96e))
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Documentation
|
|
123
|
+
|
|
124
|
+
* minor update on Controls documentation ([5f4ace1](https://github.com/iTowns/itowns/commit/5f4ace1))
|
|
125
|
+
* **Controls:** minor doc fixes ([d7c2ffa](https://github.com/iTowns/itowns/commit/d7c2ffa))
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<a name="2.34.0"></a>
|
|
130
|
+
# [2.34.0](https://github.com/iTowns/itowns/compare/v2.33.0...v2.34.0) (2021-07-30)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### Features
|
|
134
|
+
|
|
135
|
+
* **GlobeControls:** add support for travel out animation ([9db6ecb](https://github.com/iTowns/itowns/commit/9db6ecb))
|
|
136
|
+
* **Label:** add support to pass custom domElements to labels ([b560005](https://github.com/iTowns/itowns/commit/b560005))
|
|
137
|
+
* **Layer:** add FeatureGeometryLayer. ([0961787](https://github.com/iTowns/itowns/commit/0961787))
|
|
138
|
+
* **StateControl:** add a method to modify class properties ([1e2e11e](https://github.com/iTowns/itowns/commit/1e2e11e))
|
|
139
|
+
* **Style:** add support for custom icon in labels ([7f355c4](https://github.com/iTowns/itowns/commit/7f355c4))
|
|
140
|
+
* **Style:** add support for custom label anchor ([fe2a2d9](https://github.com/iTowns/itowns/commit/fe2a2d9))
|
|
141
|
+
* **TMSSource:** add support for specific TileMatrix identifier ([e394255](https://github.com/iTowns/itowns/commit/e394255))
|
|
142
|
+
* **View:** add double right-click event ([9ce7213](https://github.com/iTowns/itowns/commit/9ce7213))
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
### Bug Fixes
|
|
146
|
+
|
|
147
|
+
* **3Dtiles:** remove debugger command. ([0a06614](https://github.com/iTowns/itowns/commit/0a06614))
|
|
148
|
+
* **eventToViewCoord:** check if event.offset properties are defined ([26f459a](https://github.com/iTowns/itowns/commit/26f459a))
|
|
149
|
+
* **example:** generate correct URL when sharing EPT example ([8ef0b34](https://github.com/iTowns/itowns/commit/8ef0b34))
|
|
150
|
+
* **FeatureToolTip:** fix tooltip legend icon ([f632308](https://github.com/iTowns/itowns/commit/f632308))
|
|
151
|
+
* **Label:** fix occlusion between icons and label text ([29b6435](https://github.com/iTowns/itowns/commit/29b6435))
|
|
152
|
+
* **Label:** fix Style.text.offset parameter ([26b970b](https://github.com/iTowns/itowns/commit/26b970b))
|
|
153
|
+
* **Label:** rounds the projected coordinates of labels ([5d0ca6f](https://github.com/iTowns/itowns/commit/5d0ca6f))
|
|
154
|
+
* **LayeredMaterialNodeProcessing:** checks for source cache with the layer crs for command cancellation ([7570cad](https://github.com/iTowns/itowns/commit/7570cad))
|
|
155
|
+
* **tutorial:** fix internal link in tutorials ([ce8029c](https://github.com/iTowns/itowns/commit/ce8029c))
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Examples
|
|
159
|
+
|
|
160
|
+
* add an example where user can define custom controls ([00e62c2](https://github.com/iTowns/itowns/commit/00e62c2))
|
|
161
|
+
* **GeoJSON raster:** center the camera initial position on the displayed features ([8d8ac2c](https://github.com/iTowns/itowns/commit/8d8ac2c))
|
|
162
|
+
* **geojson-file:** refactor example to illustrate two ways of displaying data from a file ([4bc0774](https://github.com/iTowns/itowns/commit/4bc0774))
|
|
163
|
+
* **vectorTile:** replace expired source in vector tile examples ([8ccc1a3](https://github.com/iTowns/itowns/commit/8ccc1a3))
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
### Code Refactoring
|
|
167
|
+
|
|
168
|
+
* **GlobeControls:** switch travel animation to StateControl ([d99827d](https://github.com/iTowns/itowns/commit/d99827d))
|
|
169
|
+
* **View:** eventToViewCoords returns middle view coords by default ([2e501c3](https://github.com/iTowns/itowns/commit/2e501c3))
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### Workflow and chores
|
|
173
|
+
|
|
174
|
+
* release v2.34.0 ([4fe8baa](https://github.com/iTowns/itowns/commit/4fe8baa))
|
|
175
|
+
* expose 3dtiles process methods. ([7a94570](https://github.com/iTowns/itowns/commit/7a94570))
|
|
176
|
+
* update packages. ([50cd744](https://github.com/iTowns/itowns/commit/50cd744))
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Documentation
|
|
180
|
+
|
|
181
|
+
* **FeatureGeometryLayer:** add jsdoc to documentation config ([e77f102](https://github.com/iTowns/itowns/commit/e77f102))
|
|
182
|
+
* **README:** update deprecated link ([b483e0d](https://github.com/iTowns/itowns/commit/b483e0d))
|
|
183
|
+
* **README:** update integration badge to github action ([4c77adf](https://github.com/iTowns/itowns/commit/4c77adf))
|
|
184
|
+
* **Style:** add precision on doc ([bcee39f](https://github.com/iTowns/itowns/commit/bcee39f))
|
|
185
|
+
* **tutorials:** add support to sort tutorials in sections ([e9c8510](https://github.com/iTowns/itowns/commit/e9c8510))
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### Others
|
|
189
|
+
|
|
190
|
+
* **Fundamentals:** add links to documentation ([cf30e37](https://github.com/iTowns/itowns/commit/cf30e37))
|
|
191
|
+
* **Fundamentals:** change section titles ([296206f](https://github.com/iTowns/itowns/commit/296206f))
|
|
192
|
+
* **Fundamentals:** change tutorial links appearance ([ac167ec](https://github.com/iTowns/itowns/commit/ac167ec))
|
|
193
|
+
* add tutorials on how to use iTowns ([5916ac9](https://github.com/iTowns/itowns/commit/5916ac9))
|
|
194
|
+
* resize tutorial images ([bbb91e7](https://github.com/iTowns/itowns/commit/bbb91e7))
|
|
195
|
+
* update html titles in some examples ([7ea6538](https://github.com/iTowns/itowns/commit/7ea6538))
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
1
199
|
<a name="2.33.0"></a>
|
|
2
200
|
# [2.33.0](https://github.com/iTowns/itowns/compare/v2.32.0...v2.33.0) (2021-05-28)
|
|
3
201
|
|