@abi-software/flatmap-viewer 2.3.2-b.1 → 2.3.2-b.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.
package/README.rst CHANGED
@@ -38,7 +38,7 @@ The map server endpoint is specified as ``MAP_ENDPOINT`` in ``src/main.js``. It
38
38
  Package Installation
39
39
  ====================
40
40
 
41
- * ``npm install @abi-software/flatmap-viewer@2.3.2-b.1``
41
+ * ``npm install @abi-software/flatmap-viewer@2.3.2-b.2``
42
42
 
43
43
  Documentation
44
44
  -------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/flatmap-viewer",
3
- "version": "2.3.2-b.1",
3
+ "version": "2.3.2-b.2",
4
4
  "description": "Flatmap viewer using Maplibre GL",
5
5
  "repository": "https://github.com/AnatomicMaps/flatmap-viewer.git",
6
6
  "main": "src/main.js",
package/src/layers.js CHANGED
@@ -165,6 +165,9 @@ class MapFeatureLayers extends MapStylingLayers
165
165
  this.__addStyleLayer(style.NervePolygonBorder, PATHWAYS_LAYER);
166
166
  this.__addStyleLayer(style.NervePolygonFill, PATHWAYS_LAYER);
167
167
  this.__addStyleLayer(style.FeatureNerveLayer, PATHWAYS_LAYER);
168
+
169
+ this.__addStyleLayer(style.PathHighlightLayer, PATHWAYS_LAYER);
170
+ this.__addStyleLayer(style.PathDashHighlightLayer, PATHWAYS_LAYER);
168
171
  }
169
172
  }
170
173