@syncfusion/ej2-maps 24.1.41 → 24.1.47
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 +8 -0
- package/README.md +1 -1
- package/dist/ej2-maps.min.js +2 -2
- package/dist/ej2-maps.umd.min.js +2 -2
- package/dist/ej2-maps.umd.min.js.map +1 -1
- package/dist/es6/ej2-maps.es2015.js +110 -103
- package/dist/es6/ej2-maps.es2015.js.map +1 -1
- package/dist/es6/ej2-maps.es5.js +160 -140
- package/dist/es6/ej2-maps.es5.js.map +1 -1
- package/dist/global/ej2-maps.min.js +2 -2
- package/dist/global/ej2-maps.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +9 -9
- package/src/maps/layers/marker.js +30 -16
- package/src/maps/model/base-model.d.ts +9 -0
- package/src/maps/model/base.d.ts +8 -0
- package/src/maps/model/base.js +3 -0
- package/src/maps/user-interaction/zoom.js +57 -47
- package/src/maps/utils/helper.d.ts +1 -1
- package/src/maps/utils/helper.js +70 -77
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
|
|
13
13
|
#### New Features
|
|
14
14
|
|
|
15
|
+
- `#I524572` - The threshold limit for rendering the markers and marker clusters has now been increased, with improved performance to a decent extent. Nearly 6,000 markers can now be rendered and clustered, with enhanced rendering, zooming, and panning functionalities.
|
|
16
|
+
|
|
17
|
+
## 24.1.41 (2023-12-18)
|
|
18
|
+
|
|
19
|
+
### Maps
|
|
20
|
+
|
|
21
|
+
#### New Features
|
|
22
|
+
|
|
15
23
|
- `#I492437` - `minLatitude`, `maxLatitude`, `minLongitude` and `maxLongitude` properties are now available in the event arguments of `zoom` and `pan` events to provide the coordinates of the visible area of the Maps. `getMinMaxLatitudeLongitude` method is also available to provide these coordinate values dynamically.
|
|
16
24
|
- Polygon shapes can now be displayed over map layers by using the appropriate data source. Polygon shapes in Maps can be customized, selected, and highlighted using the properties available.
|
|
17
25
|
|
package/README.md
CHANGED
|
@@ -84,4 +84,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-contr
|
|
|
84
84
|
|
|
85
85
|
See [LICENSE FILE](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/maps/license?utm_source=npm&utm_campaign=javascript-map-npm) for more info.
|
|
86
86
|
|
|
87
|
-
© Copyright
|
|
87
|
+
© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|