@bluehalo/ngx-leaflet 18.0.2

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.
Files changed (34) hide show
  1. package/CHANGES.md +89 -0
  2. package/LICENSE +22 -0
  3. package/README.md +728 -0
  4. package/esm2022/bluehalo-ngx-leaflet.mjs +5 -0
  5. package/esm2022/lib/core/leaflet.directive.mjs +330 -0
  6. package/esm2022/lib/core/leaflet.directive.wrapper.mjs +12 -0
  7. package/esm2022/lib/core/leaflet.util.mjs +20 -0
  8. package/esm2022/lib/layers/base/leaflet-baselayers.directive.mjs +113 -0
  9. package/esm2022/lib/layers/control/leaflet-control-layers-changes.model.mjs +11 -0
  10. package/esm2022/lib/layers/control/leaflet-control-layers-config.model.mjs +7 -0
  11. package/esm2022/lib/layers/control/leaflet-control-layers.directive.mjs +100 -0
  12. package/esm2022/lib/layers/control/leaflet-control-layers.wrapper.mjs +58 -0
  13. package/esm2022/lib/layers/leaflet-layer.directive.mjs +78 -0
  14. package/esm2022/lib/layers/leaflet-layers.directive.mjs +83 -0
  15. package/esm2022/lib/layers/leaflet-tile-layer-definition.model.mjs +53 -0
  16. package/esm2022/lib/leaflet.module.mjs +40 -0
  17. package/esm2022/public-api.mjs +13 -0
  18. package/fesm2022/bluehalo-ngx-leaflet.mjs +880 -0
  19. package/fesm2022/bluehalo-ngx-leaflet.mjs.map +1 -0
  20. package/index.d.ts +5 -0
  21. package/lib/core/leaflet.directive.d.ts +94 -0
  22. package/lib/core/leaflet.directive.wrapper.d.ts +8 -0
  23. package/lib/core/leaflet.util.d.ts +7 -0
  24. package/lib/layers/base/leaflet-baselayers.directive.d.ts +45 -0
  25. package/lib/layers/control/leaflet-control-layers-changes.model.d.ts +6 -0
  26. package/lib/layers/control/leaflet-control-layers-config.model.d.ts +9 -0
  27. package/lib/layers/control/leaflet-control-layers.directive.d.ts +35 -0
  28. package/lib/layers/control/leaflet-control-layers.wrapper.d.ts +14 -0
  29. package/lib/layers/leaflet-layer.directive.d.ts +30 -0
  30. package/lib/layers/leaflet-layers.directive.d.ts +41 -0
  31. package/lib/layers/leaflet-tile-layer-definition.model.d.ts +33 -0
  32. package/lib/leaflet.module.d.ts +11 -0
  33. package/package.json +34 -0
  34. package/public-api.d.ts +12 -0
package/CHANGES.md ADDED
@@ -0,0 +1,89 @@
1
+ # Changelog
2
+
3
+ ## 18.0
4
+ Support for Angular.io 18.
5
+
6
+ Also, we are deprecating the @asymmetrik namespace.
7
+ This will be the last version of this package we publish under that namespace. This and future versions will be under the @bluehalo namespace.
8
+ 🫗
9
+
10
+ ## 17.0
11
+ Support for Angular.io 17. 🎉
12
+
13
+ ## 16.0
14
+ Support for Angular.io 16.
15
+
16
+ ## 15.0
17
+ Support for Angular.io 15. 🎉
18
+
19
+ ## 14.0
20
+ Support for Angular.io 14. 🎉
21
+
22
+ ## 13.0
23
+ Support for Angular.io 13. 🎉
24
+ We skipped a bunch of versions to get to the Ivy built, Angular-CLI based latest.
25
+ This was a big migration to a new structure and build process, so file a bug if you encounter any issues.
26
+
27
+ ### 13.0.1
28
+ Minor cleanup in the project and removed an accidental dependency
29
+
30
+ ## 8.1
31
+ Added call to Map.remove in OnDestroy handler.
32
+ This should ensure that any outstanding event handlers are cleaned up.
33
+ Added demo example for adding/removing maps dynamically.
34
+
35
+ ## 8.0
36
+ Support for Angular.io 10.
37
+
38
+ ## 7.0
39
+ Support for Angular.io 9. 🎉
40
+
41
+ - Are your markers broken? In Leaflet 1.6, the marker icons changed enough to create new hashes. See [README](https://github.com/Asymmetrik/ngx-leaflet/blob/master/README.md#a-note-about-markers) for more details.
42
+ - Renamed UMD bundle to `ngx-leaflet.umd.js`. This shouldn't affect anyone unless you're manually including the bundle.
43
+ - Angular deprecated parameterless forRoot, so I removed the static function. You may need to update your import.
44
+
45
+ ### 7.0.1
46
+ Fixed an error running the demo.
47
+ Cleanup in the README.
48
+ Fixing minification to exclude comments and include license.
49
+
50
+
51
+ ## 6.0
52
+ Support for Angular.io 8.
53
+
54
+
55
+ ## 5.0
56
+ Support for Angular.io 7.
57
+ Also moved demo to `localhost:4200`.
58
+
59
+
60
+ ## 4.0
61
+ Support for Angular 6.
62
+ Also migrated to using npm scripts for the build (no more dev dependency on gulp).
63
+
64
+ ### 4.1.0
65
+ Exporting the `LeafletUtil` class.
66
+
67
+
68
+ ## 3.0
69
+ Support for Angular 5. Also cleaned up some of the functionality related to Angular zone management.
70
+ Added documentation to README on Zone management.
71
+
72
+ ### 3.1.0
73
+ Added [map events](#map-events), [layer events](#layer-events).
74
+ Added several input bound map options including ```[leafletMaxBounds]```, ```[leafletMaxZoom]```, and ```[leafletMinZoom]```.
75
+ Added output binding for map center - ```(leafletMapCenter)``` and map zoom - ```(leafletMapZoom)```.
76
+
77
+
78
+ ## 2.0
79
+ Support for Angular 4.
80
+
81
+ ### 2.6.0
82
+ Wrapping several map operations in ```NgZone.runOutsideAngular``` in order to prevent excessive dirty checking.
83
+ If you encounter an unexpected issue due to this change, please file an issue.
84
+
85
+ ### 2.5.0
86
+ Added the ```[leafletLayer]``` directive for adding/removing individual layers.
87
+
88
+ ### 2.3.0
89
+ Renamed the package to ```ngx-leaflet```
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2007-2024 BlueHalo, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+