mapshaper 0.5.113 → 0.5.116
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 +9 -0
- package/mapshaper.js +630 -558
- package/package.json +1 -1
- package/www/mapshaper-gui.js +2 -2
- package/www/mapshaper.js +630 -558
package/package.json
CHANGED
package/www/mapshaper-gui.js
CHANGED
|
@@ -9198,7 +9198,7 @@
|
|
|
9198
9198
|
}
|
|
9199
9199
|
obj.properties.transform = getSvgFurnitureTransform(ext);
|
|
9200
9200
|
obj.properties.class = 'mapshaper-svg-furniture';
|
|
9201
|
-
obj.children = internal.importFurniture(internal.
|
|
9201
|
+
obj.children = internal.importFurniture(internal.getFrameLayerData(lyr), frame);
|
|
9202
9202
|
return internal.svg.stringify(obj);
|
|
9203
9203
|
}
|
|
9204
9204
|
|
|
@@ -10334,7 +10334,7 @@
|
|
|
10334
10334
|
|
|
10335
10335
|
function getFrameData() {
|
|
10336
10336
|
var frameLyr = internal.findFrameLayer(model);
|
|
10337
|
-
return frameLyr && internal.
|
|
10337
|
+
return frameLyr && internal.getFrameLayerData(frameLyr) || null;
|
|
10338
10338
|
}
|
|
10339
10339
|
|
|
10340
10340
|
function clearAllDisplayArcs() {
|