geojs 1.4.0 → 1.5.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/.github/workflows/main.yml +1 -1
- package/CHANGELOG.md +270 -241
- package/geo.js +127 -29
- package/geo.lean.js +127 -29
- package/geo.lean.min.js +2 -2
- package/geo.min.js +3 -3
- package/package.json +3 -7
- package/src/annotation.js +13 -1
- package/src/annotationLayer.js +5 -0
- package/src/canvas/heatmapFeature.js +39 -16
- package/src/heatmapFeature.js +16 -5
- package/src/osmLayer.js +49 -4
- package/src/util/mockVGL.js +1 -0
- package/src/webgl/quadFeature.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,487 +1,516 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
-
# [1.
|
|
3
|
+
# [1.5.0](https://github.com/OpenGeoscience/geojs/compare/v1.4.3...v1.5.0) (2021-12-20)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
* Add
|
|
8
|
+
* Add scaleWithZoom option to heatmaps. ([f3a1a3f](https://github.com/OpenGeoscience/geojs/commit/f3a1a3f328418b375000320103752fa6c4bdd381))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Performance Improvements
|
|
12
|
+
|
|
13
|
+
* Automatically adjust heatmap update delay. ([57e42b9](https://github.com/OpenGeoscience/geojs/commit/57e42b9f55b8028bd664be6ec21ff5089c50f356)), closes [#1087](https://github.com/OpenGeoscience/geojs/issues/1087)
|
|
14
|
+
|
|
15
|
+
## Version 1.4.3
|
|
16
|
+
|
|
17
|
+
### Changes
|
|
18
|
+
|
|
19
|
+
- Removed wikimedia from the map source list ([#1109](../../pull/1109))
|
|
20
|
+
|
|
21
|
+
## Version 1.4.2
|
|
22
|
+
|
|
23
|
+
### Improvements
|
|
24
|
+
|
|
25
|
+
- Added more tile sources to the default list ([#1107](../../pull/1107))
|
|
26
|
+
|
|
27
|
+
## Version 1.4.1
|
|
28
|
+
|
|
29
|
+
### Improvements
|
|
30
|
+
|
|
31
|
+
- Add a continuousCloseProximity option to annotations ([#1106](../../pull/1106))
|
|
32
|
+
|
|
33
|
+
## Version 1.4.0
|
|
34
|
+
|
|
35
|
+
### Features
|
|
36
|
+
|
|
37
|
+
- Add a gridFeature ([#1082](../../pull/1082))
|
|
9
38
|
|
|
10
39
|
## Version 1.3.0
|
|
11
40
|
|
|
12
41
|
### Features
|
|
13
42
|
|
|
14
|
-
- Add an optional baseQuad to the tileLayer (#1105)
|
|
15
|
-
- Support cropping quads (#1104)
|
|
43
|
+
- Add an optional baseQuad to the tileLayer ([#1105](../../pull/1105))
|
|
44
|
+
- Support cropping quads ([#1104](../../pull/1104))
|
|
16
45
|
|
|
17
46
|
## Version 1.2.0
|
|
18
47
|
|
|
19
48
|
### Features
|
|
20
49
|
|
|
21
|
-
- Allow sharing queues between tile layers (#1100)
|
|
22
|
-
- Allow removing promises from the idle monitor (#1101)
|
|
23
|
-
- Improve when tile layers are idle (#1101)
|
|
50
|
+
- Allow sharing queues between tile layers ([#1100](../../pull/1100))
|
|
51
|
+
- Allow removing promises from the idle monitor ([#1101](../../pull/1101))
|
|
52
|
+
- Improve when tile layers are idle ([#1101](../../pull/1101))
|
|
24
53
|
|
|
25
54
|
## Version 1.1.0
|
|
26
55
|
|
|
27
56
|
### Features
|
|
28
|
-
- Added a geoOnce handler for events (#1097)
|
|
57
|
+
- Added a geoOnce handler for events ([#1097](../../pull/1097))
|
|
29
58
|
|
|
30
59
|
## Version 1.0.3
|
|
31
60
|
|
|
32
61
|
### Bug Fixes
|
|
33
|
-
- Have semantic release publish artifacts to the GitHub release (#1094)
|
|
62
|
+
- Have semantic release publish artifacts to the GitHub release ([#1094](../../pull/1094))
|
|
34
63
|
|
|
35
64
|
## Version 1.0.2
|
|
36
65
|
|
|
37
66
|
### Improvements
|
|
38
|
-
- The primary map div now has overflow hidden set on it (#1088)
|
|
67
|
+
- The primary map div now has overflow hidden set on it ([#1088](../../pull/1088))
|
|
39
68
|
|
|
40
69
|
## Version 1.0.1
|
|
41
70
|
|
|
42
71
|
### Improvements
|
|
43
|
-
- Contours with continuous (unstepped) data can specify the same number of values in `rangeValues` and `colorRange` (#1079)
|
|
72
|
+
- Contours with continuous (unstepped) data can specify the same number of values in `rangeValues` and `colorRange` ([#1079](../../pull/1079))
|
|
44
73
|
|
|
45
74
|
## Version 1.0.0
|
|
46
75
|
|
|
47
76
|
### Improvements
|
|
48
|
-
- Screenshots now handle mix-blend-mode settings on top level divs (#1074)
|
|
49
|
-
- More flexible default position accessors (#1066)
|
|
77
|
+
- Screenshots now handle mix-blend-mode settings on top level divs ([#1074](../../pull/1074))
|
|
78
|
+
- More flexible default position accessors ([#1066](../../pull/1066))
|
|
50
79
|
|
|
51
80
|
### Bug Fixes
|
|
52
|
-
- Fixed an issue with affine transforms and polygons (#1073)
|
|
81
|
+
- Fixed an issue with affine transforms and polygons ([#1073](../../pull/1073))
|
|
53
82
|
|
|
54
83
|
## Version 0.20.0
|
|
55
84
|
|
|
56
85
|
### Features
|
|
57
|
-
- Added a marker feature (#1035)
|
|
58
|
-
- The mapInteractor cancelOnMove option can now take a movement threshold (#1058)
|
|
59
|
-
- GCS can now be specified in pointSearch, boxSearch, and polygonSearch (#1051)
|
|
60
|
-
- Added a track feature (#1040)
|
|
61
|
-
- Added a geo.gui.scaleWidget.formatUnit utility function (#1048)
|
|
86
|
+
- Added a marker feature ([#1035](../../pull/1035))
|
|
87
|
+
- The mapInteractor cancelOnMove option can now take a movement threshold ([#1058](../../pull/1058))
|
|
88
|
+
- GCS can now be specified in pointSearch, boxSearch, and polygonSearch ([#1051](../../pull/1051))
|
|
89
|
+
- Added a track feature ([#1040](../../pull/1040))
|
|
90
|
+
- Added a geo.gui.scaleWidget.formatUnit utility function ([#1048](../../pull/1048))
|
|
62
91
|
|
|
63
92
|
### Improvements
|
|
64
|
-
- The pointInPolygon2D function is faster (#1052)
|
|
65
|
-
- On markers, updateStyleFromArray optimizes certain updates and exposes a faster way to change symbol and symbol value (#1049)
|
|
93
|
+
- The pointInPolygon2D function is faster ([#1052](../../pull/1052))
|
|
94
|
+
- On markers, updateStyleFromArray optimizes certain updates and exposes a faster way to change symbol and symbol value ([#1049](../../pull/1049))
|
|
66
95
|
|
|
67
96
|
## Version 0.19.8
|
|
68
97
|
|
|
69
98
|
### Changes
|
|
70
|
-
- Line segments with zero width or zero opacity won't be found by pointSearch or polygonSearch (#1041)
|
|
99
|
+
- Line segments with zero width or zero opacity won't be found by pointSearch or polygonSearch ([#1041](../../pull/1041))
|
|
71
100
|
|
|
72
101
|
### Bug Fixes
|
|
73
|
-
- Removed extra calls to sceneObject constructors (#1039)
|
|
74
|
-
- Fixed an issue with rendering on hidden tabs in Chrome (#1042)
|
|
102
|
+
- Removed extra calls to sceneObject constructors ([#1039](../../pull/1039))
|
|
103
|
+
- Fixed an issue with rendering on hidden tabs in Chrome ([#1042](../../pull/1042))
|
|
75
104
|
|
|
76
105
|
## Version 0.19.7
|
|
77
106
|
|
|
78
107
|
### Features
|
|
79
|
-
- The osmLayer now has predefined `tileSources` that can be used with the `source` method or property to switch multiple parameters at once (#1020)
|
|
108
|
+
- The osmLayer now has predefined `tileSources` that can be used with the `source` method or property to switch multiple parameters at once ([#1020](../../pull/1020))
|
|
80
109
|
|
|
81
110
|
### Improvements
|
|
82
|
-
- Points with small radii or thin strokes are rendered better (#1021)
|
|
83
|
-
- When only updating point styles, don't recompute geometry transforms (#1022)
|
|
84
|
-
- Optimized a transform code path for pixel coordinates (#1023)
|
|
85
|
-
- WebGL point features automatically use the most memory-efficient primitive shape for the point sizes used based on the system's graphics capabilities (#1031)
|
|
86
|
-
- Less data is transferred to the GPU when only styles have changed in webgl line or polygon features (#1016)
|
|
111
|
+
- Points with small radii or thin strokes are rendered better ([#1021](../../pull/1021))
|
|
112
|
+
- When only updating point styles, don't recompute geometry transforms ([#1022](../../pull/1022))
|
|
113
|
+
- Optimized a transform code path for pixel coordinates ([#1023](../../pull/1023))
|
|
114
|
+
- WebGL point features automatically use the most memory-efficient primitive shape for the point sizes used based on the system's graphics capabilities ([#1031](../../pull/1031))
|
|
115
|
+
- Less data is transferred to the GPU when only styles have changed in webgl line or polygon features ([#1016](../../pull/1016))
|
|
87
116
|
|
|
88
117
|
### Changes
|
|
89
|
-
- Switched the default tile server to Stamen Design's toner-lite (#1020)
|
|
118
|
+
- Switched the default tile server to Stamen Design's toner-lite ([#1020](../../pull/1020))
|
|
90
119
|
|
|
91
120
|
### Bug Fixes
|
|
92
|
-
- Mouse wheel events didn't recompute gcs coordinates, so a wheel event without a previous move event could list the wrong location (#1027)
|
|
93
|
-
- Original event data was not included with actionwheel events (#1030)
|
|
121
|
+
- Mouse wheel events didn't recompute gcs coordinates, so a wheel event without a previous move event could list the wrong location ([#1027](../../pull/1027))
|
|
122
|
+
- Original event data was not included with actionwheel events ([#1030](../../pull/1030))
|
|
94
123
|
|
|
95
124
|
## Version 0.19.6
|
|
96
125
|
|
|
97
126
|
### Features
|
|
98
|
-
- Added a polygonSearch method to features (#1014)
|
|
127
|
+
- Added a polygonSearch method to features ([#1014](../../pull/1014))
|
|
99
128
|
|
|
100
129
|
### Changes
|
|
101
|
-
- The feature boxSearch function now uses map input gcs coordinates consistently and returns results in the same format as pointSearch (#1014)
|
|
102
|
-
- The pointTo2DTriangleBasis utility function was renamed to pointToTriangleBasis2d (#1014)
|
|
130
|
+
- The feature boxSearch function now uses map input gcs coordinates consistently and returns results in the same format as pointSearch ([#1014](../../pull/1014))
|
|
131
|
+
- The pointTo2DTriangleBasis utility function was renamed to pointToTriangleBasis2d ([#1014](../../pull/1014))
|
|
103
132
|
|
|
104
133
|
## Version 0.19.5
|
|
105
134
|
|
|
106
135
|
### Features
|
|
107
|
-
- Fetch queues can have an initial size different from their regular size (#1000)
|
|
108
|
-
- Autoshare renderers now has three states, with the default being more likely to not change anything visually (#1011)
|
|
136
|
+
- Fetch queues can have an initial size different from their regular size ([#1000](../../pull/1000))
|
|
137
|
+
- Autoshare renderers now has three states, with the default being more likely to not change anything visually ([#1011](../../pull/1011))
|
|
109
138
|
|
|
110
139
|
### Improvements
|
|
111
|
-
- More response zooming via mouse wheel (#993)
|
|
112
|
-
- Explicitly exit retired renderers when autosharing renderers (#1007)
|
|
113
|
-
- If a point has no stroke or fill, don't return it from pointSearch (#1003)
|
|
114
|
-
- WebGL point, line, polygon, and contour features use a localized origin for improved precision at high zoom levels. This reduces panning jitter in zoom levels 19 and up (#1005)
|
|
115
|
-
- When doing a point search on a line feature, report which line segment is found (#1008)
|
|
116
|
-
- Include source event information in some feature events (#1009)
|
|
140
|
+
- More response zooming via mouse wheel ([#993](../../pull/993))
|
|
141
|
+
- Explicitly exit retired renderers when autosharing renderers ([#1007](../../pull/1007))
|
|
142
|
+
- If a point has no stroke or fill, don't return it from pointSearch ([#1003](../../pull/1003))
|
|
143
|
+
- WebGL point, line, polygon, and contour features use a localized origin for improved precision at high zoom levels. This reduces panning jitter in zoom levels 19 and up ([#1005](../../pull/1005))
|
|
144
|
+
- When doing a point search on a line feature, report which line segment is found ([#1008](../../pull/1008))
|
|
145
|
+
- Include source event information in some feature events ([#1009](../../pull/1009))
|
|
117
146
|
|
|
118
147
|
### Changes
|
|
119
|
-
- Idle handlers no longer defer to scene-graph parents. Parents still wait for all children to be idle (#1001)
|
|
120
|
-
- Better handling of tiles with overlap (#997)
|
|
148
|
+
- Idle handlers no longer defer to scene-graph parents. Parents still wait for all children to be idle ([#1001](../../pull/1001))
|
|
149
|
+
- Better handling of tiles with overlap ([#997](../../pull/997))
|
|
121
150
|
|
|
122
151
|
### Bug Fixes
|
|
123
|
-
- Shared tile layers stack properly by clearing quads on layer addition and removal (#1010)
|
|
152
|
+
- Shared tile layers stack properly by clearing quads on layer addition and removal ([#1010](../../pull/1010))
|
|
124
153
|
|
|
125
154
|
## Version 0.19.4
|
|
126
155
|
|
|
127
156
|
### Improvements
|
|
128
|
-
- Speed up rebuilding webgl point features (#994)
|
|
157
|
+
- Speed up rebuilding webgl point features ([#994](../../pull/994))
|
|
129
158
|
|
|
130
159
|
## Version 0.19.3
|
|
131
160
|
|
|
132
161
|
### Features
|
|
133
|
-
- Layers that use webgl renderers automatically share contexts when possible. Layers can switch renderers manually as well. This largely avoids the limitation of number of webgl contexts in a browser (#975)
|
|
134
|
-
- Support affine transforms in the proj4 string (#986)
|
|
162
|
+
- Layers that use webgl renderers automatically share contexts when possible. Layers can switch renderers manually as well. This largely avoids the limitation of number of webgl contexts in a browser ([#975](../../pull/975))
|
|
163
|
+
- Support affine transforms in the proj4 string ([#986](../../pull/986))
|
|
135
164
|
|
|
136
165
|
### Improvements
|
|
137
|
-
- Speed up rendering geojson features by using constant values for constant geojson styles (#987)
|
|
166
|
+
- Speed up rendering geojson features by using constant values for constant geojson styles ([#987](../../pull/987))
|
|
138
167
|
|
|
139
168
|
### Changes
|
|
140
|
-
- The point clustering radius value is now in display pixels (#983)
|
|
169
|
+
- The point clustering radius value is now in display pixels ([#983](../../pull/983))
|
|
141
170
|
|
|
142
171
|
### Bug Fixes
|
|
143
|
-
- Fixed drawing partial fixed-scale canvas quads (#985)
|
|
172
|
+
- Fixed drawing partial fixed-scale canvas quads ([#985](../../pull/985))
|
|
144
173
|
|
|
145
174
|
## Version 0.19.2
|
|
146
175
|
|
|
147
176
|
### Improvements
|
|
148
|
-
- Make fewer function calls when computing polygon strokes (#980)
|
|
149
|
-
- Speed up coordinate transforms that only switch y-axis (#979)
|
|
177
|
+
- Make fewer function calls when computing polygon strokes ([#980](../../pull/980))
|
|
178
|
+
- Speed up coordinate transforms that only switch y-axis ([#979](../../pull/979))
|
|
150
179
|
|
|
151
180
|
## Version 0.19.1
|
|
152
181
|
|
|
153
182
|
### Features
|
|
154
|
-
- Polygon annotations can be drawn in the same continuous smooth manner as line annotations. (#976)
|
|
183
|
+
- Polygon annotations can be drawn in the same continuous smooth manner as line annotations. ([#976](../../pull/976))
|
|
155
184
|
|
|
156
185
|
### Changes
|
|
157
|
-
- Rename the d3 renderer to svg. d3 still works as an alias (#965)
|
|
158
|
-
- Rename the vgl renderer to webgl. vgl still works as an alias (#965)
|
|
186
|
+
- Rename the d3 renderer to svg. d3 still works as an alias ([#965](../../pull/965))
|
|
187
|
+
- Rename the vgl renderer to webgl. vgl still works as an alias ([#965](../../pull/965))
|
|
159
188
|
|
|
160
189
|
## Version 0.19.0
|
|
161
190
|
|
|
162
191
|
### Features
|
|
163
|
-
- Feature selection API is now enabled automatically if any event handlers are bounds to the feature (#921)
|
|
164
|
-
- Added a VTK.js renderer which supports a point feature (#893, #953)
|
|
192
|
+
- Feature selection API is now enabled automatically if any event handlers are bounds to the feature ([#921](../../pull/921))
|
|
193
|
+
- Added a VTK.js renderer which supports a point feature ([#893](../../pull/893), [#953](../../pull/953))
|
|
165
194
|
|
|
166
195
|
### Improvements
|
|
167
|
-
- Coordinate transforms on flat arrays are now faster (#939)
|
|
168
|
-
- `convertColor` is memoized to speed up repeated calls (#936)
|
|
169
|
-
- All features have a `featureType` property (#931)
|
|
170
|
-
- When changing geometry sizes, buffers are reallocated less (#941)
|
|
171
|
-
- Initial rendering webGL features is somewhat faster (#943)
|
|
172
|
-
- WebGL point and polygon features no longer clip by z coordinates (#963)
|
|
196
|
+
- Coordinate transforms on flat arrays are now faster ([#939](../../pull/939))
|
|
197
|
+
- `convertColor` is memoized to speed up repeated calls ([#936](../../pull/936))
|
|
198
|
+
- All features have a `featureType` property ([#931](../../pull/931))
|
|
199
|
+
- When changing geometry sizes, buffers are reallocated less ([#941](../../pull/941))
|
|
200
|
+
- Initial rendering webGL features is somewhat faster ([#943](../../pull/943))
|
|
201
|
+
- WebGL point and polygon features no longer clip by z coordinates ([#963](../../pull/963))
|
|
173
202
|
|
|
174
203
|
### Changes
|
|
175
|
-
- Removed the dependency on the vgl module for the `object` and `timestamp` classes (#918)
|
|
176
|
-
- CSS color names are obtained from an npm package rather than being defined in the util module (#936)
|
|
177
|
-
- Updated several npm modules (#944)
|
|
178
|
-
- Report the unmasked renderer used with webgl (#947)
|
|
179
|
-
- Width and height are now in the base renderer class (#962)
|
|
204
|
+
- Removed the dependency on the vgl module for the `object` and `timestamp` classes ([#918](../../pull/918))
|
|
205
|
+
- CSS color names are obtained from an npm package rather than being defined in the util module ([#936](../../pull/936))
|
|
206
|
+
- Updated several npm modules ([#944](../../pull/944))
|
|
207
|
+
- Report the unmasked renderer used with webgl ([#947](../../pull/947))
|
|
208
|
+
- Width and height are now in the base renderer class ([#962](../../pull/962))
|
|
180
209
|
|
|
181
210
|
### Bug Fixes
|
|
182
|
-
- Fixed some minor issues with layers (#949)
|
|
211
|
+
- Fixed some minor issues with layers ([#949](../../pull/949))
|
|
183
212
|
|
|
184
213
|
### Documentation
|
|
185
|
-
- Improve documentation (#922, #928, #929, #930, #932, #948, #950, #951, #956, #960, #961)
|
|
186
|
-
- Added a point cluster example (#957)
|
|
187
|
-
- Editor tutorials keep history in browser (#926)
|
|
214
|
+
- Improve documentation ([#922](../../pull/922), [#928](../../pull/928), [#929](../../pull/929), [#930](../../pull/930), [#932](../../pull/932), [#948](../../pull/948), [#950](../../pull/950), [#951](../../pull/951), [#956](../../pull/956), [#960](../../pull/960), [#961](../../pull/961))
|
|
215
|
+
- Added a point cluster example ([#957](../../pull/957))
|
|
216
|
+
- Editor tutorials keep history in browser ([#926](../../pull/926))
|
|
188
217
|
|
|
189
218
|
## Version 0.18.1
|
|
190
219
|
|
|
191
220
|
### Bug Fixes
|
|
192
|
-
- Fixed an issue with the annotation key handler (#923)
|
|
221
|
+
- Fixed an issue with the annotation key handler ([#923](../../pull/923))
|
|
193
222
|
|
|
194
223
|
## Version 0.18.0
|
|
195
224
|
|
|
196
225
|
### Features
|
|
197
|
-
- Added an idle property to objects (#894)
|
|
198
|
-
- Better handling and changing of camera clipbounds (#899)
|
|
199
|
-
- File readers (the geojsonReader) now returns a Promise. The layer will report that it is not idle until this promise is finalized (#905)
|
|
226
|
+
- Added an idle property to objects ([#894](../../pull/894))
|
|
227
|
+
- Better handling and changing of camera clipbounds ([#899](../../pull/899))
|
|
228
|
+
- File readers (the geojsonReader) now returns a Promise. The layer will report that it is not idle until this promise is finalized ([#905](../../pull/905))
|
|
200
229
|
|
|
201
230
|
### Bug Fixes
|
|
202
|
-
- Fixed an issue with overlapping, cropped tiles on old browsers (#901)
|
|
203
|
-
- Fixed an issue where a `geo.gl.polygonFeature` could be updated after it was deleted (#913)
|
|
231
|
+
- Fixed an issue with overlapping, cropped tiles on old browsers ([#901](../../pull/901))
|
|
232
|
+
- Fixed an issue where a `geo.gl.polygonFeature` could be updated after it was deleted ([#913](../../pull/913))
|
|
204
233
|
|
|
205
234
|
### Changes
|
|
206
|
-
- Changed build process: optional dependencies are now included in the bundle by default (#890)
|
|
207
|
-
- Transpile with Babel to support old browsers and new language features (#900, #903)
|
|
208
|
-
- The geojsonReader has been renamed from `jsonReader` to `geojsonReader`. The old name still works as an alias (#905)
|
|
209
|
-
- Catch errors in animation frame callbacks (#911)
|
|
235
|
+
- Changed build process: optional dependencies are now included in the bundle by default ([#890](../../pull/890))
|
|
236
|
+
- Transpile with Babel to support old browsers and new language features ([#900](../../pull/900), [#903](../../pull/903))
|
|
237
|
+
- The geojsonReader has been renamed from `jsonReader` to `geojsonReader`. The old name still works as an alias ([#905](../../pull/905))
|
|
238
|
+
- Catch errors in animation frame callbacks ([#911](../../pull/911))
|
|
210
239
|
|
|
211
240
|
## Version 0.17.0
|
|
212
241
|
|
|
213
242
|
### Features
|
|
214
|
-
- Add multi-color support to the continuous color legend (#810)
|
|
215
|
-
- Warn when trying to create an unsupported feature (#823)
|
|
216
|
-
- Expose registries (#830)
|
|
217
|
-
- Add all proj4 projections (#840, #873)
|
|
218
|
-
- Trigger an event when an annotation's coordinates change (#841)
|
|
219
|
-
- Add an option to limit text feature rendering (#834)
|
|
220
|
-
- Calculating min and max of array is now a utility function (#835)
|
|
221
|
-
- Generalized meshes (#817)
|
|
222
|
-
- Added a `wrapAngle` utility function (#836)
|
|
223
|
-
- Isolines (#838)
|
|
243
|
+
- Add multi-color support to the continuous color legend ([#810](../../pull/810))
|
|
244
|
+
- Warn when trying to create an unsupported feature ([#823](../../pull/823))
|
|
245
|
+
- Expose registries ([#830](../../pull/830))
|
|
246
|
+
- Add all proj4 projections ([#840](../../pull/840), [#873](../../pull/873))
|
|
247
|
+
- Trigger an event when an annotation's coordinates change ([#841](../../pull/841))
|
|
248
|
+
- Add an option to limit text feature rendering ([#834](../../pull/834))
|
|
249
|
+
- Calculating min and max of array is now a utility function ([#835](../../pull/835))
|
|
250
|
+
- Generalized meshes ([#817](../../pull/817))
|
|
251
|
+
- Added a `wrapAngle` utility function ([#836](../../pull/836))
|
|
252
|
+
- Isolines ([#838](../../pull/838))
|
|
224
253
|
|
|
225
254
|
### Bug Fixes
|
|
226
|
-
- Ensure GL polygons are built once before their strokes so that the strokes are always on top (#806)
|
|
227
|
-
- Work around `atan` bugs in openmesa and swiftshader WebGL renderers (#816)
|
|
228
|
-
- Fix text alignment on the scale widget (#828)
|
|
229
|
-
- Ignore z values in `vgl.lineFeature` (#833)
|
|
230
|
-
- Don't modify geojson object coordinates (#848)
|
|
231
|
-
- Ensure all point position calls pass the data index (#852)
|
|
255
|
+
- Ensure GL polygons are built once before their strokes so that the strokes are always on top ([#806](../../pull/806))
|
|
256
|
+
- Work around `atan` bugs in openmesa and swiftshader WebGL renderers ([#816](../../pull/816))
|
|
257
|
+
- Fix text alignment on the scale widget ([#828](../../pull/828))
|
|
258
|
+
- Ignore z values in `vgl.lineFeature` ([#833](../../pull/833))
|
|
259
|
+
- Don't modify geojson object coordinates ([#848](../../pull/848))
|
|
260
|
+
- Ensure all point position calls pass the data index ([#852](../../pull/852))
|
|
232
261
|
|
|
233
262
|
### Testing
|
|
234
|
-
- Test with a muted video (#811)
|
|
235
|
-
- Use Firefox headless (#818)
|
|
236
|
-
- Use karma-spec-reported for better output (#829)
|
|
237
|
-
- Upgrade jasmine (#837)
|
|
238
|
-
- Refactor how external data is fetched (#851)
|
|
239
|
-
- Add more support for testing examples, similar to tutorial tests (#866)
|
|
240
|
-
- Refactored the server script to allow serving the website and build directories as well as the dist directory (#868)
|
|
263
|
+
- Test with a muted video ([#811](../../pull/811))
|
|
264
|
+
- Use Firefox headless ([#818](../../pull/818))
|
|
265
|
+
- Use karma-spec-reported for better output ([#829](../../pull/829))
|
|
266
|
+
- Upgrade jasmine ([#837](../../pull/837))
|
|
267
|
+
- Refactor how external data is fetched ([#851](../../pull/851))
|
|
268
|
+
- Add more support for testing examples, similar to tutorial tests ([#866](../../pull/866))
|
|
269
|
+
- Refactored the server script to allow serving the website and build directories as well as the dist directory ([#868](../../pull/868))
|
|
241
270
|
|
|
242
271
|
### Documentation
|
|
243
|
-
- Improve tutorial page layout (#809)
|
|
244
|
-
- Improve documentation (#819, #825, #824, #839, #844, #849, #859, #858, #867, #872)
|
|
245
|
-
- Update tutorials when text is deleted (#827)
|
|
246
|
-
- Added a rainfall example with isolines and contours (#869)
|
|
247
|
-
- Change the Deep Zoom example to make it more generic and use a public data source (#875)
|
|
248
|
-
- Automate website deployment (#877)
|
|
272
|
+
- Improve tutorial page layout ([#809](../../pull/809))
|
|
273
|
+
- Improve documentation ([#819](../../pull/819), [#825](../../pull/825), [#824](../../pull/824), [#839](../../pull/839), [#844](../../pull/844), [#849](../../pull/849), [#859](../../pull/859), [#858](../../pull/858), [#867](../../pull/867), [#872](../../pull/872))
|
|
274
|
+
- Update tutorials when text is deleted ([#827](../../pull/827))
|
|
275
|
+
- Added a rainfall example with isolines and contours ([#869](../../pull/869))
|
|
276
|
+
- Change the Deep Zoom example to make it more generic and use a public data source ([#875](../../pull/875))
|
|
277
|
+
- Automate website deployment ([#877](../../pull/877))
|
|
249
278
|
|
|
250
279
|
### Changes
|
|
251
|
-
- Remove bower support (#856)
|
|
252
|
-
- Switch to webpack v3 (#854)
|
|
253
|
-
- Removed needless function wrappers (#870)
|
|
280
|
+
- Remove bower support ([#856](../../pull/856))
|
|
281
|
+
- Switch to webpack v3 ([#854](../../pull/854))
|
|
282
|
+
- Removed needless function wrappers ([#870](../../pull/870))
|
|
254
283
|
|
|
255
284
|
## Version 0.16.0
|
|
256
285
|
|
|
257
286
|
### Features
|
|
258
|
-
- Events allow changing feature order on mouse over and mouse click (#807)
|
|
287
|
+
- Events allow changing feature order on mouse over and mouse click ([#807](../../pull/807))
|
|
259
288
|
|
|
260
289
|
### Improvements
|
|
261
|
-
- Multiple UI layers can be active at once (#802)
|
|
262
|
-
- Clear animation queue when the map is destroyed (#801)
|
|
263
|
-
- Handle dereferencing errors in screenshots more gracefully (#803)
|
|
290
|
+
- Multiple UI layers can be active at once ([#802](../../pull/802))
|
|
291
|
+
- Clear animation queue when the map is destroyed ([#801](../../pull/801))
|
|
292
|
+
- Handle dereferencing errors in screenshots more gracefully ([#803](../../pull/803))
|
|
264
293
|
|
|
265
294
|
### Changes
|
|
266
|
-
- Line style function parameters are more consistent (#804)
|
|
295
|
+
- Line style function parameters are more consistent ([#804](../../pull/804))
|
|
267
296
|
|
|
268
297
|
### Bug Fixes
|
|
269
|
-
- Polygon strokes were sometimes drawn under polygon fills (#806)
|
|
298
|
+
- Polygon strokes were sometimes drawn under polygon fills ([#806](../../pull/806))
|
|
270
299
|
|
|
271
300
|
### Documentation
|
|
272
|
-
- Added a [line tutorial](https://opengeoscience.github.io/geojs/tutorials/lines) (#805)
|
|
301
|
+
- Added a [line tutorial](https://opengeoscience.github.io/geojs/tutorials/lines) ([#805](../../pull/805))
|
|
273
302
|
|
|
274
303
|
## Version 0.15.2
|
|
275
304
|
|
|
276
305
|
### Features
|
|
277
|
-
- Allow specifying the map's initial maximum bounds in a different GCS (#794)
|
|
278
|
-
- Improve setting widget positions (#796)
|
|
279
|
-
- Add methods to simplify line geometries (#791)
|
|
280
|
-
- Add functions computing spherical and Vincenty distances (#797)
|
|
281
|
-
- Add a scale widget (#798)
|
|
282
|
-
- Improve the screenshot function by dereferencing CSS urls (#799)
|
|
306
|
+
- Allow specifying the map's initial maximum bounds in a different GCS ([#794](../../pull/794))
|
|
307
|
+
- Improve setting widget positions ([#796](../../pull/796))
|
|
308
|
+
- Add methods to simplify line geometries ([#791](../../pull/791))
|
|
309
|
+
- Add functions computing spherical and Vincenty distances ([#797](../../pull/797))
|
|
310
|
+
- Add a scale widget ([#798](../../pull/798))
|
|
311
|
+
- Improve the screenshot function by dereferencing CSS urls ([#799](../../pull/799))
|
|
283
312
|
|
|
284
313
|
### Testing
|
|
285
|
-
- Fix testing with Chrome 65 (#792)
|
|
286
|
-
- Add tests for geo.gui.widget and geo.gui.domWidget (#795)
|
|
314
|
+
- Fix testing with Chrome 65 ([#792](../../pull/792))
|
|
315
|
+
- Add tests for geo.gui.widget and geo.gui.domWidget ([#795](../../pull/795))
|
|
287
316
|
|
|
288
317
|
### Documentation
|
|
289
|
-
- Enable the [color legend example](https://opengeoscience.github.io/geojs/examples/color-legend/) (#790)
|
|
290
|
-
- Add a new [editor tutorial](https://opengeoscience.github.io/geojs/tutorials/editor3) with HTML and CSS panes (#783)
|
|
291
|
-
- Use https urls for openstreetmap tiles in all examples and tutorials (#793)
|
|
318
|
+
- Enable the [color legend example](https://opengeoscience.github.io/geojs/examples/color-legend/) ([#790](../../pull/790))
|
|
319
|
+
- Add a new [editor tutorial](https://opengeoscience.github.io/geojs/tutorials/editor3) with HTML and CSS panes ([#783](../../pull/783))
|
|
320
|
+
- Use https urls for openstreetmap tiles in all examples and tutorials ([#793](../../pull/793))
|
|
292
321
|
|
|
293
322
|
## Version 0.15.1
|
|
294
323
|
|
|
295
324
|
### Testing
|
|
296
|
-
- Use resemblejs for testing rather than node-resemble (#785)
|
|
325
|
+
- Use resemblejs for testing rather than node-resemble ([#785](../../pull/785))
|
|
297
326
|
|
|
298
327
|
### Packaging
|
|
299
|
-
- Resolve hammerjs by it's name on npm in addition to the global variable `Hammer` (#787)
|
|
328
|
+
- Resolve hammerjs by it's name on npm in addition to the global variable `Hammer` ([#787](../../pull/787))
|
|
300
329
|
|
|
301
330
|
## Version 0.15.0
|
|
302
331
|
|
|
303
332
|
### Features
|
|
304
|
-
- Individual annotations can be edited (#769)
|
|
333
|
+
- Individual annotations can be edited ([#769](../../pull/769))
|
|
305
334
|
|
|
306
335
|
### Improvements
|
|
307
|
-
- Sped up updating line features (#779)
|
|
336
|
+
- Sped up updating line features ([#779](../../pull/779))
|
|
308
337
|
|
|
309
338
|
### Bug Fixes
|
|
310
|
-
- Fixed hit test on closed lines (#780)
|
|
311
|
-
- Fixed mouse buttons reporting on Firefox (#782)
|
|
339
|
+
- Fixed hit test on closed lines ([#780](../../pull/780))
|
|
340
|
+
- Fixed mouse buttons reporting on Firefox ([#782](../../pull/782))
|
|
312
341
|
|
|
313
342
|
## Version 0.14.0
|
|
314
343
|
|
|
315
344
|
### Features
|
|
316
345
|
|
|
317
|
-
- Added an `object.geoIsOn` function to check if an event is bound (#768)
|
|
318
|
-
- Use the average perimeter for the center of a polygon or line (#761)
|
|
319
|
-
- Allow display to/from gcs conversion functions to handle arrays of points (#766)
|
|
320
|
-
- When drawing a line annotation, don't create intermediate colinear points (#759)
|
|
321
|
-
- Improve exiting and reloading maps (#750)
|
|
322
|
-
- Various minor improvements (#767, #760)
|
|
346
|
+
- Added an `object.geoIsOn` function to check if an event is bound ([#768](../../pull/768))
|
|
347
|
+
- Use the average perimeter for the center of a polygon or line ([#761](../../pull/761))
|
|
348
|
+
- Allow display to/from gcs conversion functions to handle arrays of points ([#766](../../pull/766))
|
|
349
|
+
- When drawing a line annotation, don't create intermediate colinear points ([#759](../../pull/759))
|
|
350
|
+
- Improve exiting and reloading maps ([#750](../../pull/750))
|
|
351
|
+
- Various minor improvements ([#767](../../pull/767), [#760](../../pull/760))
|
|
323
352
|
|
|
324
353
|
### Packaging
|
|
325
|
-
- Refactored importing optional dependencies so webpack makes them truly optional (#770)
|
|
326
|
-
- Upgraded to jQuery 3.x (#772, #773)
|
|
327
|
-
- Updated npm packages (#756)
|
|
328
|
-
- Reduce packaging effects (#763, #751)
|
|
354
|
+
- Refactored importing optional dependencies so webpack makes them truly optional ([#770](../../pull/770))
|
|
355
|
+
- Upgraded to jQuery 3.x ([#772](../../pull/772), [#773](../../pull/773))
|
|
356
|
+
- Updated npm packages ([#756](../../pull/756))
|
|
357
|
+
- Reduce packaging effects ([#763](../../pull/763), [#751](../../pull/751))
|
|
329
358
|
|
|
330
359
|
### Testing
|
|
331
|
-
- Improved testing with different browsers (Chrome 64 and Firefox 58) (#775, #771, #755)
|
|
360
|
+
- Improved testing with different browsers (Chrome 64 and Firefox 58) ([#775](../../pull/775), [#771](../../pull/771), [#755](../../pull/755))
|
|
332
361
|
|
|
333
362
|
### Bug Fixes
|
|
334
|
-
- Include stroke widths when doing a point search on polygons (#762)
|
|
335
|
-
- Fixed `pointSearch` when the feature used a non-default gcs (#758)
|
|
336
|
-
- Fixed unbinding keyboard events (#757)
|
|
363
|
+
- Include stroke widths when doing a point search on polygons ([#762](../../pull/762))
|
|
364
|
+
- Fixed `pointSearch` when the feature used a non-default gcs ([#758](../../pull/758))
|
|
365
|
+
- Fixed unbinding keyboard events ([#757](../../pull/757))
|
|
337
366
|
|
|
338
367
|
### Tutorials and Website
|
|
339
|
-
- Added more tutorials (#774)
|
|
340
|
-
- Minor website improvements (#753, #752)
|
|
368
|
+
- Added more tutorials ([#774](../../pull/774))
|
|
369
|
+
- Minor website improvements ([#753](../../pull/753), [#752](../../pull/752))
|
|
341
370
|
|
|
342
371
|
## Version 0.13.0
|
|
343
372
|
|
|
344
373
|
### New features
|
|
345
|
-
- Added a new video quad feature (#745)
|
|
346
|
-
- Annotation id's are now persevered when reloading geojson (#747)
|
|
374
|
+
- Added a new video quad feature ([#745](../../pull/745))
|
|
375
|
+
- Annotation id's are now persevered when reloading geojson ([#747](../../pull/747))
|
|
347
376
|
|
|
348
377
|
### Bug fixes
|
|
349
|
-
- Fixed setting rotation on map creation (#740)
|
|
350
|
-
- Fixed polygon fill and opacity interaction (#744)
|
|
351
|
-
- Fixed handling GCS in geojson annotation imports (#748)
|
|
378
|
+
- Fixed setting rotation on map creation ([#740](../../pull/740))
|
|
379
|
+
- Fixed polygon fill and opacity interaction ([#744](../../pull/744))
|
|
380
|
+
- Fixed handling GCS in geojson annotation imports ([#748](../../pull/748))
|
|
352
381
|
|
|
353
382
|
### Improvements to the website and documentation
|
|
354
|
-
- Updated GeoJS's [website](https://opengeoscience.github.io/geojs/) (#729)
|
|
355
|
-
- Improved the [API documentation](https://opengeoscience.github.io/geojs/apidocs/) (#738)
|
|
356
|
-
- Added an "editor" [tutorial](https://opengeoscience.github.io/geojs/tutorials/) (#742)
|
|
357
|
-
- Updated some [examples](https://opengeoscience.github.io/geojs/tutorials/) (#743)
|
|
383
|
+
- Updated GeoJS's [website](https://opengeoscience.github.io/geojs/) ([#729](../../pull/729))
|
|
384
|
+
- Improved the [API documentation](https://opengeoscience.github.io/geojs/apidocs/) ([#738](../../pull/738))
|
|
385
|
+
- Added an "editor" [tutorial](https://opengeoscience.github.io/geojs/tutorials/) ([#742](../../pull/742))
|
|
386
|
+
- Updated some [examples](https://opengeoscience.github.io/geojs/tutorials/) ([#743](../../pull/743))
|
|
358
387
|
|
|
359
388
|
## Version 0.12.4
|
|
360
389
|
|
|
361
|
-
- Added a new color legend widget (#731)
|
|
362
|
-
- Fixed `z-index` bug on new layers (#732)
|
|
363
|
-
- Improved testing infrastructure (#735, #737)
|
|
364
|
-
- Removed some boiler plate code from the examples (#733)
|
|
390
|
+
- Added a new color legend widget ([#731](../../pull/731))
|
|
391
|
+
- Fixed `z-index` bug on new layers ([#732](../../pull/732))
|
|
392
|
+
- Improved testing infrastructure ([#735](../../pull/735), [#737](../../pull/737))
|
|
393
|
+
- Removed some boiler plate code from the examples ([#733](../../pull/733))
|
|
365
394
|
|
|
366
395
|
## Version 0.12.3
|
|
367
396
|
|
|
368
|
-
- Added annotation labels (#719)
|
|
369
|
-
- Added text feature (#719)
|
|
370
|
-
- Added tutorial infrastructure and some simple tutorials (#725, #727, #728)
|
|
371
|
-
- Handle tap-touch actions (adds support for some tablet styluses) (#730)
|
|
397
|
+
- Added annotation labels ([#719](../../pull/719))
|
|
398
|
+
- Added text feature ([#719](../../pull/719))
|
|
399
|
+
- Added tutorial infrastructure and some simple tutorials ([#725](../../pull/725), [#727](../../pull/727), [#728](../../pull/728))
|
|
400
|
+
- Handle tap-touch actions (adds support for some tablet styluses) ([#730](../../pull/730))
|
|
372
401
|
|
|
373
402
|
## Version 0.12.2
|
|
374
403
|
|
|
375
|
-
- Started revamping our [API documentation](https://opengeoscience.github.io/geojs/apidocs/) with a new template (#704, #706, #708, #710, #713)
|
|
376
|
-
- Several minor API improvements (#707)
|
|
377
|
-
- Added subdomain template parameters for tile layer urls (#715)
|
|
404
|
+
- Started revamping our [API documentation](https://opengeoscience.github.io/geojs/apidocs/) with a new template ([#704](../../pull/704), [#706](../../pull/706), [#708](../../pull/708), [#710](../../pull/710), [#713](../../pull/713))
|
|
405
|
+
- Several minor API improvements ([#707](../../pull/707))
|
|
406
|
+
- Added subdomain template parameters for tile layer urls ([#715](../../pull/715))
|
|
378
407
|
|
|
379
408
|
## Version 0.12.1
|
|
380
409
|
|
|
381
|
-
- Fix bugs in rectangle annotations (#693, #694)
|
|
382
|
-
- Add new optimized methods for updating styles of features for animations and a new [example](https://opengeoscience.github.io/geojs/examples/animation/) (#687)
|
|
383
|
-
- Fix checks for optional dependencies (#696)
|
|
384
|
-
- Change the template for our [apidocs](https://opengeoscience.github.io/geojs/apidocs/) to [jaguarjs-jsdoc](https://github.com/davidshimjs/jaguarjs-jsdoc) (#697)
|
|
385
|
-
- Fix a bug in applying polygon stroke styles (#700)
|
|
410
|
+
- Fix bugs in rectangle annotations ([#693](../../pull/693), [#694](../../pull/694))
|
|
411
|
+
- Add new optimized methods for updating styles of features for animations and a new [example](https://opengeoscience.github.io/geojs/examples/animation/) ([#687](../../pull/687))
|
|
412
|
+
- Fix checks for optional dependencies ([#696](../../pull/696))
|
|
413
|
+
- Change the template for our [apidocs](https://opengeoscience.github.io/geojs/apidocs/) to [jaguarjs-jsdoc](https://github.com/davidshimjs/jaguarjs-jsdoc) ([#697](../../pull/697))
|
|
414
|
+
- Fix a bug in applying polygon stroke styles ([#700](../../pull/700))
|
|
386
415
|
|
|
387
416
|
## Version 0.12.0
|
|
388
417
|
|
|
389
|
-
- Handle basic touch interactions using hammerjs (#675)
|
|
390
|
-
- Increase testing coverage (#676, #677, #684)
|
|
391
|
-
- Support additional line styling options in the json reader (#680)
|
|
392
|
-
- Add the ability to draw line annotations (#681)
|
|
393
|
-
- Add `visible` and `selectionAPI` methods to layers (#682)
|
|
394
|
-
- Replace custom quad tree implementation with kdbush (#685)
|
|
395
|
-
- Remove several unused utility methods (#686)
|
|
396
|
-
- Move vgl mocking function into `utils` for use in upstream testing (#688)
|
|
418
|
+
- Handle basic touch interactions using hammerjs ([#675](../../pull/675))
|
|
419
|
+
- Increase testing coverage ([#676](../../pull/676), [#677](../../pull/677), [#684](../../pull/684))
|
|
420
|
+
- Support additional line styling options in the json reader ([#680](../../pull/680))
|
|
421
|
+
- Add the ability to draw line annotations ([#681](../../pull/681))
|
|
422
|
+
- Add `visible` and `selectionAPI` methods to layers ([#682](../../pull/682))
|
|
423
|
+
- Replace custom quad tree implementation with kdbush ([#685](../../pull/685))
|
|
424
|
+
- Remove several unused utility methods ([#686](../../pull/686))
|
|
425
|
+
- Move vgl mocking function into `utils` for use in upstream testing ([#688](../../pull/688))
|
|
397
426
|
|
|
398
427
|
## Version 0.11.1
|
|
399
428
|
|
|
400
|
-
- Added a `map.screenshot` method to take screenshots of the current map view (#665, #667)
|
|
401
|
-
- Added a screenshot button on the example pages (#669)
|
|
402
|
-
- Made it easier to disable or replace keyboard actions in the interactor (#670)
|
|
429
|
+
- Added a `map.screenshot` method to take screenshots of the current map view ([#665](../../pull/665), [#667](../../pull/667))
|
|
430
|
+
- Added a screenshot button on the example pages ([#669](../../pull/669))
|
|
431
|
+
- Made it easier to disable or replace keyboard actions in the interactor ([#670](../../pull/670))
|
|
403
432
|
|
|
404
433
|
## Version 0.11.0
|
|
405
434
|
|
|
406
|
-
- Refactored GL line feature with a number of new styling options available. See our [blog post](https://blog.kitware.com/drawing-lines-in-geojs/) and the new [line example](https://opengeoscience.github.io/geojs/examples/lines/) for more details. (#649, #662)
|
|
407
|
-
- Added keyboard shortcuts for map navigation. (#661)
|
|
408
|
-
- Most DOM styling is now done with a CSS file rather than setting inline styles. (#660)
|
|
409
|
-
- Added GCS options to the annotation interface. (#654)
|
|
410
|
-
- Added headless unit testing for GL code and examples. (#651, #658).
|
|
411
|
-
- Removed unused source files. (#656, #657)
|
|
435
|
+
- Refactored GL line feature with a number of new styling options available. See our [blog post](https://blog.kitware.com/drawing-lines-in-geojs/) and the new [line example](https://opengeoscience.github.io/geojs/examples/lines/) for more details. ([#649](../../pull/649), [#662](../../pull/662))
|
|
436
|
+
- Added keyboard shortcuts for map navigation. ([#661](../../pull/661))
|
|
437
|
+
- Most DOM styling is now done with a CSS file rather than setting inline styles. ([#660](../../pull/660))
|
|
438
|
+
- Added GCS options to the annotation interface. ([#654](../../pull/654))
|
|
439
|
+
- Added headless unit testing for GL code and examples. ([#651](../../pull/651), [#658](../../pull/658)).
|
|
440
|
+
- Removed unused source files. ([#656](../../pull/656), [#657](../../pull/657))
|
|
412
441
|
|
|
413
442
|
## Version 0.10.5
|
|
414
443
|
|
|
415
|
-
- Made annotation states more consistent (#643)
|
|
416
|
-
- Reduced lag between layers (#644)
|
|
417
|
-
- Fixed gaps between tiles (#648)
|
|
418
|
-
- Fixed map jumping after certain transitions (#650)
|
|
444
|
+
- Made annotation states more consistent ([#643](../../pull/643))
|
|
445
|
+
- Reduced lag between layers ([#644](../../pull/644))
|
|
446
|
+
- Fixed gaps between tiles ([#648](../../pull/648))
|
|
447
|
+
- Fixed map jumping after certain transitions ([#650](../../pull/650))
|
|
419
448
|
|
|
420
449
|
## Version 0.10.4
|
|
421
450
|
|
|
422
451
|
### Changes
|
|
423
|
-
- Added a pixelmap feature and [example](https://opengeoscience.github.io/geojs/examples/pixelmap/) (#637)
|
|
424
|
-
- The location with a quad is reported in mouse events and point search functions (#635)
|
|
425
|
-
- Canvas elements can be rendered in quads on the canvas renderer (#634)
|
|
426
|
-
- Most features support visibility (#632)
|
|
427
|
-
- Colors can be specified with a greater variety of css methods, such as `rgb()` and `rgba()` (#636)
|
|
428
|
-
- Point annotations can scale with zoom (#628)
|
|
452
|
+
- Added a pixelmap feature and [example](https://opengeoscience.github.io/geojs/examples/pixelmap/) ([#637](../../pull/637))
|
|
453
|
+
- The location with a quad is reported in mouse events and point search functions ([#635](../../pull/635))
|
|
454
|
+
- Canvas elements can be rendered in quads on the canvas renderer ([#634](../../pull/634))
|
|
455
|
+
- Most features support visibility ([#632](../../pull/632))
|
|
456
|
+
- Colors can be specified with a greater variety of css methods, such as `rgb()` and `rgba()` ([#636](../../pull/636))
|
|
457
|
+
- Point annotations can scale with zoom ([#628](../../pull/628))
|
|
429
458
|
|
|
430
459
|
## Version 0.10.3
|
|
431
460
|
|
|
432
461
|
### Changes
|
|
433
|
-
- Fixed a bug in getting the visible bounds using a custom map projection (#625)
|
|
434
|
-
- Slider widgets can now be repositioned and resized (#619)
|
|
435
|
-
- Improved the annotation API with the ability to import and export GeoJSON (#617)
|
|
462
|
+
- Fixed a bug in getting the visible bounds using a custom map projection ([#625](../../pull/625))
|
|
463
|
+
- Slider widgets can now be repositioned and resized ([#619](../../pull/619))
|
|
464
|
+
- Improved the annotation API with the ability to import and export GeoJSON ([#617](../../pull/617))
|
|
436
465
|
|
|
437
466
|
## Version 0.10.2
|
|
438
467
|
|
|
439
468
|
### Changes
|
|
440
|
-
- Add a closed flag for line features (#602)
|
|
441
|
-
- Minor changes and bug fixes in the interactor (#603, #604, #605)
|
|
442
|
-
- Allow showing partial tiles on edges (#606)
|
|
443
|
-
- Minor fixes to geojson rendering (#609)
|
|
444
|
-
- Update to VGL 0.3.10 (#608, #612)
|
|
445
|
-
- Reduce flickering in point cluster rendering (#621)
|
|
446
|
-
- Beta support for interactive annotations and a new [example](https://opengeoscience.github.io/geojs/examples/annotations/) (#613, #616)
|
|
469
|
+
- Add a closed flag for line features ([#602](../../pull/602))
|
|
470
|
+
- Minor changes and bug fixes in the interactor ([#603](../../pull/603), [#604](../../pull/604), [#605](../../pull/605))
|
|
471
|
+
- Allow showing partial tiles on edges ([#606](../../pull/606))
|
|
472
|
+
- Minor fixes to geojson rendering ([#609](../../pull/609))
|
|
473
|
+
- Update to VGL 0.3.10 ([#608](../../pull/608), [#612](../../pull/612))
|
|
474
|
+
- Reduce flickering in point cluster rendering ([#621](../../pull/621))
|
|
475
|
+
- Beta support for interactive annotations and a new [example](https://opengeoscience.github.io/geojs/examples/annotations/) ([#613](../../pull/613), [#616](../../pull/616))
|
|
447
476
|
|
|
448
477
|
## Version 0.10.1
|
|
449
478
|
|
|
450
479
|
### Bug fixes
|
|
451
|
-
- Fixed a bug preventing deletion of stroked polygons (#601)
|
|
480
|
+
- Fixed a bug preventing deletion of stroked polygons ([#601](../../pull/601))
|
|
452
481
|
|
|
453
482
|
## Version 0.10.0
|
|
454
483
|
|
|
455
484
|
### Breaking changes
|
|
456
|
-
- Removed the `planeFeature` class in favor of the faster and more powerful`quadFeature` (#583)
|
|
457
|
-
- Changed the callback signature for the `fill` style, which turns on or off rendering the polygon fill (#597)
|
|
485
|
+
- Removed the `planeFeature` class in favor of the faster and more powerful`quadFeature` ([#583](../../pull/583))
|
|
486
|
+
- Changed the callback signature for the `fill` style, which turns on or off rendering the polygon fill ([#597](../../pull/597))
|
|
458
487
|
|
|
459
488
|
### Additions and improvements
|
|
460
|
-
- Improved heatmap feature and [example](https://opengeoscience.github.io/geojs/examples/heatmap/) (#574, #577, #578, #579)
|
|
461
|
-
- Replaced grunt build tasks with webpack and npm scripts (#580)
|
|
462
|
-
- Added a d3 rendered `quadFeature` (#581)
|
|
463
|
-
- Added selection-based zoom (#582)
|
|
464
|
-
- Added an interface for `createLayer` to request renderers by feature support (#590)
|
|
465
|
-
- Improved polygon rendering performance ([massively](https://github.com/OpenGeoscience/geojs/pull/594#issuecomment-226821131)) and added a usage [example](https://opengeoscience.github.io/geojs/examples/polygons/) (#594)
|
|
466
|
-
- Added an [example](https://opengeoscience.github.io/geojs/examples/sld/) of customizing the style of WMS layers (#595)
|
|
467
|
-
- Added stroking to the polygon feature (#597)
|
|
489
|
+
- Improved heatmap feature and [example](https://opengeoscience.github.io/geojs/examples/heatmap/) ([#574](../../pull/574), [#577](../../pull/577), [#578](../../pull/578), [#579](../../pull/579))
|
|
490
|
+
- Replaced grunt build tasks with webpack and npm scripts ([#580](../../pull/580))
|
|
491
|
+
- Added a d3 rendered `quadFeature` ([#581](../../pull/581))
|
|
492
|
+
- Added selection-based zoom ([#582](../../pull/582))
|
|
493
|
+
- Added an interface for `createLayer` to request renderers by feature support ([#590](../../pull/590))
|
|
494
|
+
- Improved polygon rendering performance ([massively](https://github.com/OpenGeoscience/geojs/pull/594#issuecomment-226821131)) and added a usage [example](https://opengeoscience.github.io/geojs/examples/polygons/) ([#594](../../pull/594))
|
|
495
|
+
- Added an [example](https://opengeoscience.github.io/geojs/examples/sld/) of customizing the style of WMS layers ([#595](../../pull/595))
|
|
496
|
+
- Added stroking to the polygon feature ([#597](../../pull/597))
|
|
468
497
|
|
|
469
498
|
### Bug fixes
|
|
470
|
-
- Fixed a bug in box selection with map rotation (#582)
|
|
471
|
-
- Fixed the `draw` method on GL and canvas features (#585)
|
|
472
|
-
- Fixed a rendering bug in GL line features (#597)
|
|
473
|
-
- Removed the [now unavailable](http://devblog.mapquest.com/2016/06/15/modernization-of-mapquest-results-in-changes-to-open-tile-access/) mapquest tile servers from the examples (#598)
|
|
499
|
+
- Fixed a bug in box selection with map rotation ([#582](../../pull/582))
|
|
500
|
+
- Fixed the `draw` method on GL and canvas features ([#585](../../pull/585))
|
|
501
|
+
- Fixed a rendering bug in GL line features ([#597](../../pull/597))
|
|
502
|
+
- Removed the [now unavailable](http://devblog.mapquest.com/2016/06/15/modernization-of-mapquest-results-in-changes-to-open-tile-access/) mapquest tile servers from the examples ([#598](../../pull/598))
|
|
474
503
|
|
|
475
504
|
## Version 0.9.1
|
|
476
505
|
|
|
477
506
|
### Changes
|
|
478
|
-
- Added a new [heatmap](https://opengeoscience.github.io/geojs/examples/heatmap/) feature (#557)
|
|
479
|
-
- Switched to [earcut](https://github.com/mapbox/earcut) for triangulating polygons (#555)
|
|
480
|
-
- Added methods on `geo.transform` to load EPSG projections from [epsg.io](http://epsg.io/) (#561)
|
|
481
|
-
- Recorded the git SHA at build time as `geo.sha` (#562)
|
|
482
|
-
- Made `tileLayer.tilesAtZoom` configurable to support rectangular images (#568)
|
|
483
|
-
- Added caching to proj4 transform objects (#570)
|
|
484
|
-
- Added jQuery to the distributed bundle (#572)
|
|
507
|
+
- Added a new [heatmap](https://opengeoscience.github.io/geojs/examples/heatmap/) feature ([#557](../../pull/557))
|
|
508
|
+
- Switched to [earcut](https://github.com/mapbox/earcut) for triangulating polygons ([#555](../../pull/555))
|
|
509
|
+
- Added methods on `geo.transform` to load EPSG projections from [epsg.io](http://epsg.io/) ([#561](../../pull/561))
|
|
510
|
+
- Recorded the git SHA at build time as `geo.sha` ([#562](../../pull/562))
|
|
511
|
+
- Made `tileLayer.tilesAtZoom` configurable to support rectangular images ([#568](../../pull/568))
|
|
512
|
+
- Added caching to proj4 transform objects ([#570](../../pull/570))
|
|
513
|
+
- Added jQuery to the distributed bundle ([#572](../../pull/572))
|
|
485
514
|
|
|
486
515
|
## Version 0.9.0
|
|
487
516
|
|