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