|
@@ -1,6 +1,12 @@
|
|
|
<template>
|
|
|
<div v-bind:id="mapDivId" ref="map" style="width: 100%; height: 100%;background: none;">
|
|
|
- <div id="toolbar" v-if="isdynamicPlotting" class="panel panel-primary"
|
|
|
+ <transition-group
|
|
|
+ appear
|
|
|
+ name="animate__animated animate__bounce"
|
|
|
+ enter-active-class="animate__backInLeft"
|
|
|
+ leave-active-class="animate__backOutLeft"
|
|
|
+ >
|
|
|
+ <div id="toolbar" v-if="isdynamicPlotting" class="panel panel-primary" v-show="mapToolShowBH" key="mapFlash"
|
|
|
style="position:absolute;z-index: 9999;top:4rem;left: 1rem; border-radius: 4px; width: fit-content;height:635px;overflow-y:scroll;background:#040b1f">
|
|
|
<div class="panel-heading" id="panelheading">
|
|
|
<h5 style=" color: #2bacf7;font-size: 1rem;padding:.5rem;">鼠标标绘</h5>
|
|
@@ -17,7 +23,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+ </transition-group>
|
|
|
<div id="toolbar-heat" v-if="isheatPlotting" class="panel panel-primary"
|
|
|
style="position:absolute;z-index: 9999; padding: 1rem; bottom:3rem;right: 1rem; border-radius: 4px; width: fit-content;height:fit-content;overflow-y:scroll;background:#040b1f">
|
|
|
<div class="panel-body content">
|
|
@@ -311,6 +317,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
props: {
|
|
|
+ mapToolShowBH:false,
|
|
|
mapDiv: null,
|
|
|
codes: null,
|
|
|
mapSite: {},
|