geojs 1.6.4 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -1
- package/geo.js +978 -303
- package/geo.lean.js +978 -303
- package/geo.lean.min.js +3 -3
- package/geo.min.js +5 -5
- package/package.json +1 -1
- package/src/annotation.js +2 -2
- package/src/annotationLayer.js +4 -4
- package/src/canvas/pixelmapFeature.js +208 -0
- package/src/index.js +1 -0
- package/src/lineFeature.js +3 -3
- package/src/pixelmapFeature.js +97 -249
- package/src/pixelmapLayer.js +145 -0
- package/src/polygonFeature.js +3 -3
- package/src/quadFeature.js +1 -1
- package/src/tileLayer.js +3 -2
- package/src/util/common.js +3 -3
- package/src/webgl/index.js +2 -0
- package/src/webgl/lookupTable2D.js +122 -0
- package/src/webgl/pixelmapFeature.frag +47 -0
- package/src/webgl/pixelmapFeature.js +203 -0
- package/src/webgl/quadFeature.js +41 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
+
## Version 1.7.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Support tiled pixelmaps ([#1153](../../pull/1153))
|
|
8
|
+
|
|
9
|
+
## Version 1.6.6
|
|
10
|
+
|
|
11
|
+
### Improvements
|
|
12
|
+
|
|
13
|
+
- Add support for webgl pixelmaps ([#1152](../../pull/1152))
|
|
14
|
+
|
|
15
|
+
## Version 1.6.5
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- Fix spelling of collinear ([#1173](../../pull/1173))
|
|
20
|
+
|
|
3
21
|
## Version 1.6.4
|
|
4
22
|
|
|
5
23
|
### Bug Fixes
|
|
@@ -379,7 +397,7 @@
|
|
|
379
397
|
- Added an `object.geoIsOn` function to check if an event is bound ([#768](../../pull/768))
|
|
380
398
|
- Use the average perimeter for the center of a polygon or line ([#761](../../pull/761))
|
|
381
399
|
- Allow display to/from gcs conversion functions to handle arrays of points ([#766](../../pull/766))
|
|
382
|
-
- When drawing a line annotation, don't create intermediate
|
|
400
|
+
- When drawing a line annotation, don't create intermediate collinear points ([#759](../../pull/759))
|
|
383
401
|
- Improve exiting and reloading maps ([#750](../../pull/750))
|
|
384
402
|
- Various minor improvements ([#767](../../pull/767), [#760](../../pull/760))
|
|
385
403
|
|