@hpcc-js/map 2.75.2 → 2.75.5

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 CHANGED
@@ -52,4 +52,38 @@ This package is part of the mono repository "@hpcc-js" (aka Visualization Framew
52
52
  </script>
53
53
  </body>
54
54
  </html>
55
- ```
55
+ ```
56
+
57
+ <ClientOnly>
58
+ <hpcc-vitepress style="width:100%;height:600px">
59
+ <div id="target" style="height:600px">
60
+ </div>
61
+ <script type="module">
62
+ import { Leaflet } from "@hpcc-js/map";
63
+
64
+ new Leaflet.ClusterPins()
65
+ .target("target")
66
+ .columns(["latitude", "longitude", "color", "icon"])
67
+ .data([
68
+ [51.897969, -8.475438, "green", "fa-plus"],
69
+ [35.652930, 139.687128],
70
+ [37.665074, -122.384375, "navy"],
71
+ [32.690680, -117.178540],
72
+ [39.709455, -104.969859],
73
+ [41.244123, -95.961610, "navy"],
74
+ [32.688980, -117.192040],
75
+ [45.786490, -108.526600],
76
+ [45.796180, -108.535652],
77
+ [45.774320, -108.494370],
78
+ [45.777062, -108.549835, "red", "fa-minus"]
79
+ ])
80
+ .mapType("MapBox")
81
+ .latitudeColumn("latitude")
82
+ .longitudeColumn("longitude")
83
+ .faCharColumn("icon")
84
+ .fillColorColumn("color")
85
+ .render()
86
+ ;
87
+ </script>
88
+ </hpcc-vitepress>
89
+ </ClientOnly>
package/dist/index.es6.js CHANGED
@@ -21,8 +21,8 @@ function _mergeNamespaces(n, m) {
21
21
  }
22
22
 
23
23
  var PKG_NAME = "@hpcc-js/map";
24
- var PKG_VERSION = "2.75.2";
25
- var BUILD_VERSION = "2.102.4";
24
+ var PKG_VERSION = "2.75.5";
25
+ var BUILD_VERSION = "2.102.10";
26
26
 
27
27
  /*! *****************************************************************************
28
28
  Copyright (c) Microsoft Corporation.