eurostat-map 4.8.5 → 4.9.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/README.md +5 -3
- package/build/215.eurostatmap.min.js +1 -1
- package/build/eurostatmap.js +1460 -980
- package/build/eurostatmap.min.js +2 -2
- package/build/eurostatmap.min.js.map +1 -1
- package/build/package.json +1 -1
- package/build/types/core/MapConfig.d.ts +8 -0
- package/build/types/core/MapInstance.d.ts +15 -0
- package/build/types/index.d.ts +1 -0
- package/build/types/legend/LegendConfig.d.ts +1 -1
- package/build/types/legend/choropleth/RankedBarChartConfig.d.ts +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
10
|
<br>
|
|
11
|
-
<div align="center">
|
|
12
|
-
<
|
|
13
|
-
|
|
11
|
+
<div align="center">
|
|
12
|
+
<a href="https://github.com/eurostat/eurostat-map">
|
|
13
|
+
<img src="https://raw.githubusercontent.com/eurostat/eurostat-map/master/docs/img/eurostat-map-logo-cropped.png" alt="Eurostat Map" width="400"/>
|
|
14
|
+
</a>
|
|
15
|
+
</div>
|
|
14
16
|
<div align="center">
|
|
15
17
|
<em>Build publication-ready statistical maps of Europe in minutes.</em>
|
|
16
18
|
</div>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/*! /*! eurostat-map v4.
|
|
1
|
+
/*! /*! eurostat-map v4.9.0 | 2026 Eurostat | EUPL License. See https://github.com/eurostat/eurostat-map/blob/master/LICENSE * / */
|
|
2
2
|
!function webpackUniversalModuleDefinition(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.eurostatmap=t():e.eurostatmap=t()}(self,()=>(onmessage=function onmessage(e){var t=e.data,o=t.nodes,r=t.radii,n=t.strengthX,s=t.strengthY,i=t.iterations,p=t.d3URL;importScripts(p||"https://unpkg.com/d3@7/dist/d3.min.js");for(var a=o.map(function(e,t){return e.x=e.properties.centroid[0],e.y=e.properties.centroid[1],e.r=r[t],e}),c=d3.forceSimulation(a).force("x",d3.forceX(function(e){return e.properties.centroid[0]}).strength(n)).force("y",d3.forceY(function(e){return e.properties.centroid[1]}).strength(s)).force("collide",d3.forceCollide(function(e){return e.r}).iterations(i)).stop(),d=Math.ceil(Math.log(c.alphaMin())/Math.log(1-c.alphaDecay())),f=0;f<d;f++)c.tick(),f%10==0&&postMessage({type:"progress",progress:f,total:d});postMessage({type:"end",nodes:a}),self.close()},{}));
|
|
3
3
|
//# sourceMappingURL=215.eurostatmap.min.js.map
|