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