@daishu10000/leaflet-heat 0.3.2 → 0.3.3
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/README.md +18 -25
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
Leaflet.heat
|
|
2
2
|
==========
|
|
3
3
|
|
|
4
|
-
A tiny, simple and fast [Leaflet](http://leafletjs.com) heatmap plugin.
|
|
4
|
+
A tiny, simple and fast [Leaflet](http://leafletjs.com) heatmap plugin (community bugfix fork).
|
|
5
5
|
Uses [simpleheat](https://github.com/mourner/simpleheat) under the hood,
|
|
6
6
|
additionally clustering points into a grid for performance.
|
|
7
7
|
|
|
8
|
+
- **Package**: [@daishu10000/leaflet-heat](https://www.npmjs.com/package/@daishu10000/leaflet-heat)
|
|
9
|
+
- **Homepage**: https://github.com/daishu0000/Leaflet.heat
|
|
10
|
+
- **License**: BSD-2-Clause
|
|
11
|
+
|
|
8
12
|
|
|
9
13
|
## Demos
|
|
10
14
|
|
|
@@ -63,33 +67,22 @@ Unless `max` option is specified, intensity should range between `0.0` and `1.0`
|
|
|
63
67
|
|
|
64
68
|
## Changelog
|
|
65
69
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
- Fixed intensity to work properly with `max` option.
|
|
69
|
-
- Fixed zoom animation on Leaflet 1.0 beta 2.
|
|
70
|
-
- Fixed tiles and point intensity in demos.
|
|
71
|
-
|
|
72
|
-
#### 0.1.3 — Nov 25, 2015
|
|
73
|
-
|
|
74
|
-
- Fixed some edge cases when handling point intensity.
|
|
75
|
-
- Added `minOpacity` option.
|
|
76
|
-
|
|
77
|
-
#### 0.1.2 — Nov 5, 2014
|
|
78
|
-
|
|
79
|
-
- Added compatibility with Leaflet 0.8-dev.
|
|
80
|
-
|
|
81
|
-
#### 0.1.1 — Apr 22, 2014
|
|
70
|
+
This fork is maintained from version 0.2.1 onward. For 0.2.0 and earlier, see the [upstream repository](https://github.com/Leaflet/Leaflet.heat).
|
|
82
71
|
|
|
83
|
-
|
|
84
|
-
-
|
|
72
|
+
### 0.2.1 — Feb 20, 2026
|
|
73
|
+
- Fix crash when map and heat use different Leaflet instances.
|
|
85
74
|
|
|
86
|
-
|
|
75
|
+
### 0.2.2 — Feb 21, 2026
|
|
76
|
+
- A better max setting.
|
|
87
77
|
|
|
88
|
-
|
|
89
|
-
-
|
|
90
|
-
- Added `gradient` option to customize colors.
|
|
78
|
+
### 0.3.0 — Feb 21, 2026
|
|
79
|
+
- Use the newest version of simpleheat.js and modernize the environment.
|
|
91
80
|
|
|
92
|
-
|
|
81
|
+
### 0.3.1 — Feb 21, 2026
|
|
82
|
+
- Update the license.
|
|
93
83
|
|
|
94
|
-
|
|
84
|
+
### 0.3.2 — Feb 21, 2026
|
|
85
|
+
- Update eslint.
|
|
95
86
|
|
|
87
|
+
### 0.3.3 — Feb 21, 2026
|
|
88
|
+
- Update README.md.
|
package/package.json
CHANGED