@ndwnu/map 2.1.1 → 3.0.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 +74 -2
- package/fesm2022/ndwnu-map.mjs +1249 -144
- package/fesm2022/ndwnu-map.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/sprites/custom_ndw.json +3628 -0
- package/src/assets/sprites/custom_ndw.png +0 -0
- package/src/assets/sprites/custom_ndw@2x.json +3628 -0
- package/src/assets/sprites/custom_ndw@2x.png +0 -0
- package/src/assets/sprites/sdf.json +834 -0
- package/src/assets/sprites/sdf.png +0 -0
- package/src/assets/sprites/sdf@2x.json +834 -0
- package/src/assets/sprites/sdf@2x.png +0 -0
- package/src/lib/style/style.json +970 -155
- package/types/ndwnu-map.d.ts +2 -1
package/types/ndwnu-map.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ type NdwLayerSpecification = LayerSpecification & {
|
|
|
323
323
|
type NdwLayerFilterFunction = (layer: NdwLayerSpecification) => boolean;
|
|
324
324
|
|
|
325
325
|
declare const NDWMapStyle: StyleSpecification;
|
|
326
|
+
declare const NDWOSMMapStyle: StyleSpecification;
|
|
326
327
|
|
|
327
|
-
export { ApiBackgroundLayer, ApiElement, ApiLayer, ApiSource, BOUNDS_AMERSFOORT, BOUNDS_NL, COMMON_BOUNDS, DEFAULT_MAP_CONFIG, MapComponent, MapElement, MapElementRepository, MapLayer, MapSource, MaplibreCursorService, NDWMapStyle, lineWidthFrcSpecification };
|
|
328
|
+
export { ApiBackgroundLayer, ApiElement, ApiLayer, ApiSource, BOUNDS_AMERSFOORT, BOUNDS_NL, COMMON_BOUNDS, DEFAULT_MAP_CONFIG, MapComponent, MapElement, MapElementRepository, MapLayer, MapSource, MaplibreCursorService, NDWMapStyle, NDWOSMMapStyle, lineWidthFrcSpecification };
|
|
328
329
|
export type { ClickEvent, LayerFilterFunction, LayerGroup, LayerMetadata, LayerSubGroup, MapConfig, MapElementConfig, NdwLayerFilterFunction, NdwLayerSpecification };
|