anymap-ts 0.9.0 → 0.10.1
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/anymap_ts/static/deckgl.js +1 -1
- package/anymap_ts/static/leaflet.js +1 -1
- package/anymap_ts/static/mapbox.css +1 -1
- package/anymap_ts/static/mapbox.js +26608 -408
- package/anymap_ts/static/maplibre.js +1 -1
- package/anymap_ts/static/openlayers.js +7 -7
- package/package.json +1 -1
- package/src/core/BaseMapRenderer.ts +3 -24
- package/src/mapbox/MapboxRenderer.ts +2006 -80
- package/src/mapbox/index.ts +2 -0
package/src/mapbox/index.ts
CHANGED
|
@@ -9,6 +9,8 @@ import type { AnyModel } from '@anywidget/types';
|
|
|
9
9
|
import 'mapbox-gl/dist/mapbox-gl.css';
|
|
10
10
|
// Import LiDAR Control CSS
|
|
11
11
|
import 'maplibre-gl-lidar/style.css';
|
|
12
|
+
// Import maplibre-gl-components CSS (works with Mapbox too)
|
|
13
|
+
import 'maplibre-gl-components/style.css';
|
|
12
14
|
|
|
13
15
|
/**
|
|
14
16
|
* Store renderer reference on element for cleanup and multi-cell support.
|