@abi-software/flatmapvuer 1.1.3 → 1.1.4
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/package.json
CHANGED
|
@@ -276,12 +276,12 @@ Please use `const` to assign meaningful names to them...
|
|
|
276
276
|
</template>
|
|
277
277
|
<!-- The line below places the yellowstar svg on the left, and the text "Featured markers on the right" with css so they are both centered in the div -->
|
|
278
278
|
<el-popover
|
|
279
|
-
content="Find these markers for data"
|
|
279
|
+
content="Find these markers for data. The number inside the markers is the number of datasets available for each marker."
|
|
280
280
|
placement="right"
|
|
281
281
|
:teleported="false"
|
|
282
|
-
width="
|
|
282
|
+
width="200"
|
|
283
283
|
trigger="manual"
|
|
284
|
-
popper-class="flatmap-popper"
|
|
284
|
+
popper-class="flatmap-popper flatmap-marker-popper"
|
|
285
285
|
:visible="hoverVisibilities[5].value"
|
|
286
286
|
ref="markerPopover"
|
|
287
287
|
>
|
|
@@ -3187,6 +3187,12 @@ export default {
|
|
|
3187
3187
|
}
|
|
3188
3188
|
}
|
|
3189
3189
|
|
|
3190
|
+
:deep(.flatmap-popper.flatmap-marker-popper) {
|
|
3191
|
+
white-space: break-spaces;
|
|
3192
|
+
word-wrap: break-word;
|
|
3193
|
+
word-break: break-word;
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3190
3196
|
:deep(.el-loading-spinner) {
|
|
3191
3197
|
.path {
|
|
3192
3198
|
stroke: $app-primary-color;
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
export default
|
|
1
|
+
export default `<div class="flatmap-marker">
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="39" viewBox="-1 -1 27 42">
|
|
3
|
+
<ellipse style="fill: rgb(0, 0, 0); fill-opacity: 0.2;" cx="12" cy="36" rx="8" ry="4"></ellipse>
|
|
4
|
+
<path d="M12.25.25a12.254 12.254 0 0 0-12 12.494c0 6.444 6.488 12.109 11.059 22.564.549 1.256 1.333 1.256 1.882 0
|
|
5
|
+
C17.762 24.853 24.25 19.186 24.25 12.744A12.254 12.254 0 0 0 12.25.25Z" style="fill:#EE5900;stroke:#fff;stroke-width:1"></path>
|
|
6
|
+
<circle cx="12.5" cy="12.5" r="9" fill="#fff"></circle>
|
|
7
|
+
<text x="12" y="17.5" style="font-size:14px;fill:#000;text-anchor:middle">2</text>
|
|
8
|
+
</svg>
|
|
9
|
+
</div>`
|