mapshaper 0.6.59 → 0.6.62
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 +1 -1
- package/mapshaper.js +3672 -3484
- package/package.json +1 -1
- package/www/__New_Hampshire_Political_Boundaries.geojson +266 -0
- package/www/__mapshaper_snapshot_09-29.msx +0 -0
- package/www/index.html +5 -2
- package/www/mapshaper-gui.js +141 -96
- package/www/mapshaper.js +3672 -3484
- package/www/page.css +11 -10
package/www/page.css
CHANGED
|
@@ -220,7 +220,7 @@ body {
|
|
|
220
220
|
text-align: center;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
-
.box-
|
|
223
|
+
.box-coords {
|
|
224
224
|
margin-top: 7px;
|
|
225
225
|
pointer-events: initial;
|
|
226
226
|
}
|
|
@@ -836,7 +836,7 @@ img.close-btn {
|
|
|
836
836
|
cursor: pointer;
|
|
837
837
|
}
|
|
838
838
|
|
|
839
|
-
.layer-item img.
|
|
839
|
+
.layer-item img.eye-btn {
|
|
840
840
|
top: 4px;
|
|
841
841
|
}
|
|
842
842
|
|
|
@@ -851,29 +851,30 @@ img.close-btn {
|
|
|
851
851
|
display: none;
|
|
852
852
|
}
|
|
853
853
|
|
|
854
|
-
img.
|
|
854
|
+
img.eye-btn {
|
|
855
855
|
opacity: 0;
|
|
856
856
|
}
|
|
857
857
|
|
|
858
|
-
.pinnable:not(.pinned):not(.active) img.
|
|
858
|
+
.pinnable:not(.pinned):not(.active) img.black-eye {
|
|
859
859
|
opacity: 0.2;
|
|
860
860
|
}
|
|
861
861
|
|
|
862
|
-
.pinnable:not(.pinned) img.
|
|
862
|
+
.pinnable:not(.pinned) img.black-eye:hover {
|
|
863
863
|
opacity: 0.3;
|
|
864
864
|
}
|
|
865
865
|
|
|
866
|
-
|
|
866
|
+
/*.pinnable.pinned.active img.black-eye {
|
|
867
867
|
opacity: 0;
|
|
868
|
-
}
|
|
868
|
+
}*/
|
|
869
869
|
|
|
870
870
|
img.close-btn:hover,
|
|
871
|
-
.pinnable.active:not(.pinned) img.
|
|
872
|
-
.pinnable.pinned img.
|
|
871
|
+
.pinnable.active:not(.pinned) img.black-eye,
|
|
872
|
+
.pinnable.pinned:not(.active) img.green-eye,
|
|
873
|
+
.pinnable.pinned.active img.black-eye {
|
|
873
874
|
opacity: 1
|
|
874
875
|
}
|
|
875
876
|
|
|
876
|
-
.pinnable img.
|
|
877
|
+
.pinnable img.black-eye {
|
|
877
878
|
z-index: 1;
|
|
878
879
|
}
|
|
879
880
|
|