|
@@ -6,153 +6,7 @@
|
|
|
:baseMapView="baseMapViewCpt"
|
|
|
@olZoomChange="(zoom) => $emit('zoomChange', zoom)"
|
|
|
@olMapLoad="(map) => handleOlMapLoad(map)"
|
|
|
- :layout="layout"
|
|
|
/>
|
|
|
- <template v-if="drawEditsConfig.show">
|
|
|
- <div class="draw-edits-config">
|
|
|
- <div class="draw-edits-config_feature-type">
|
|
|
- <el-select v-model="drawEditsConfig.featureType" @change="drawEditsSwitchFeatureType">
|
|
|
- <el-option label="点" value="Point" :disabled="!drawEditsConfig.isPoint"/>
|
|
|
- <el-option label="线" value="LineString" :disabled="!drawEditsConfig.isLineString"/>
|
|
|
- <el-option label="多边形" value="Polygon" :disabled="!drawEditsConfig.isPolygon"/>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
- <div class="draw-edits-config_position __hover">
|
|
|
- <el-popover
|
|
|
- width="500px"
|
|
|
- placement="top"
|
|
|
- title="经纬度"
|
|
|
- trigger="click"
|
|
|
- v-model:visible="drawEditsConfig.showPosition"
|
|
|
- >
|
|
|
- <div class="popover">
|
|
|
- <CusForm ref="ref_drawEditsForm" labelWidth="0">
|
|
|
- <CusFormColumn
|
|
|
- ref="ref_drawEditsWkt"
|
|
|
- required
|
|
|
- :span="24"
|
|
|
- type="textarea"
|
|
|
- :rows="4"
|
|
|
- v-model:param="drawEditsConfig.wkt"
|
|
|
- :placeholder="drawEditsWktPlaceholderCpt"
|
|
|
- :rules="[
|
|
|
- {
|
|
|
- handle: (val) => drawEditsConfig.featureType !== 'Point' || (drawEditsConfig.featureType === 'Point' && $easyMap.validWkt.Point(val)),
|
|
|
- message: '点位WKT坐标格式错误'
|
|
|
- },
|
|
|
- {
|
|
|
- handle: (val) => drawEditsConfig.featureType !== 'LineString' || (drawEditsConfig.featureType === 'LineString' && $easyMap.validWkt.LineString(val)),
|
|
|
- message: '线段WKT坐标格式错误'
|
|
|
- },
|
|
|
- {
|
|
|
- handle: (val) => drawEditsConfig.featureType !== 'Polygon' || (drawEditsConfig.featureType === 'Polygon' && $easyMap.validWkt.Polygon(val)),
|
|
|
- message: '区域WKT坐标格式错误'
|
|
|
- },
|
|
|
- {
|
|
|
- handle: (val) => drawEditsConfig.featureType !== 'Polygon' || (drawEditsConfig.featureType === 'Polygon' && $easyMap.validWkt.PolygonKinks(val)),
|
|
|
- message: '区域坐标不可自相交'
|
|
|
- },
|
|
|
- ]"
|
|
|
- />
|
|
|
- </CusForm>
|
|
|
-
|
|
|
-<!-- <el-input-->
|
|
|
-<!-- v-model="drawEditsConfig.wkt"-->
|
|
|
-<!-- type="textarea"-->
|
|
|
-<!-- :rows="4"-->
|
|
|
-<!-- placeholder="请输入经纬度"-->
|
|
|
-<!-- ></el-input>-->
|
|
|
- <div class="footer">
|
|
|
- <el-button size="small" type="primary" @click="changeWkt">保存</el-button>
|
|
|
- <el-button size="small" @click="drawEditsConfig.showPosition = false">取消</el-button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <template #reference>
|
|
|
- <div class="reference">
|
|
|
- <img src="./images/draw-edits-position.png" alt />
|
|
|
- <span>经纬度</span>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-popover>
|
|
|
- </div>
|
|
|
- <template v-if="drawEditsConfig.featureType === 'Point'">
|
|
|
- <div class="draw-edits-config_icon">
|
|
|
- <img v-if="drawEditsConfig.pointIcon" class="icon" :src="drawEditsConfig.pointIcon"/>
|
|
|
- <div class="text"><CusEllipsis :value="drawEditsConfig.text || '点位'"/></div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="drawEditsConfig.featureType === 'LineString'">
|
|
|
- <div class="draw-edits-config_split"/>
|
|
|
- <div class="draw-edits-config_line">
|
|
|
- <div class="text">线段</div>
|
|
|
- <el-input-number
|
|
|
- class="width"
|
|
|
- v-model="drawEditsConfig.lineWidth"
|
|
|
- :min="1"
|
|
|
- :max="100"
|
|
|
- controls-position="right"
|
|
|
- step-strictly
|
|
|
- @change="drawEditsConfig.refreshStyleFunc()"
|
|
|
- />
|
|
|
- <el-color-picker v-model="drawEditsConfig.lineColor" show-alpha @change="drawEditsConfig.refreshStyleFunc()"/>
|
|
|
- <el-select class="type" v-model="drawEditsConfig.lineType" @change="drawEditsConfig.refreshStyleFunc()">
|
|
|
- <el-option label="—————" :value="0"/>
|
|
|
- <el-option label="— — — —" :value="1"/>
|
|
|
- <el-option label="- - - - - - - -" :value="2"/>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <template v-if="drawEditsConfig.featureType === 'Polygon'">
|
|
|
- <div class="draw-edits-config_split"/>
|
|
|
- <div class="draw-edits-config_line">
|
|
|
- <div class="text">边框</div>
|
|
|
- <el-input-number
|
|
|
- class="width"
|
|
|
- v-model="drawEditsConfig.polyBorderWidth"
|
|
|
- :min="1"
|
|
|
- :max="100"
|
|
|
- controls-position="right"
|
|
|
- step-strictly
|
|
|
- @change="drawEditsConfig.refreshStyleFunc()"
|
|
|
- />
|
|
|
- <el-color-picker v-model="drawEditsConfig.polyBorderColor" show-alpha @change="drawEditsConfig.refreshStyleFunc()"/>
|
|
|
- <el-select class="type" v-model="drawEditsConfig.polyBorderType" @change="drawEditsConfig.refreshStyleFunc()">
|
|
|
- <el-option label="—————" :value="0"/>
|
|
|
- <el-option label="— — — —" :value="1"/>
|
|
|
- <el-option label="- - - - - - - -" :value="2"/>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
- <div class="draw-edits-config_split"/>
|
|
|
- <div class="draw-edits-config_poly">
|
|
|
- <div class="text">填充</div>
|
|
|
- <el-color-picker v-model="drawEditsConfig.polyColor" show-alpha @change="drawEditsConfig.refreshStyleFunc()"/>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- <div class="base-switch">
|
|
|
- <el-popover
|
|
|
- placement="left"
|
|
|
- trigger="hover"
|
|
|
- popper-class="easy-map-base-switch"
|
|
|
- >
|
|
|
- <template #reference>
|
|
|
- <div style="width: 200px; height: 200px; background-color: red;"/>
|
|
|
- </template>
|
|
|
- <div class="base-switch-item" v-if="ref_olMap">
|
|
|
- <template v-for="[k, v] in ref_olMap.baseLayersMap">
|
|
|
- <div
|
|
|
- class="base-item __hover"
|
|
|
- :class="{active: judgeBaseLayerActive(k)}"
|
|
|
- @click="ref_olMap.switchBaseLayer(k)"
|
|
|
- >
|
|
|
- <div class="label">{{ v.get("_label") }}</div>
|
|
|
- <img :src="v.get('_img')" />
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- </el-popover>
|
|
|
- </div>
|
|
|
</div>
|
|
|
<ToolsLocationCom v-model:show="toolsShow.location" :mapFuncToLocation="toLocation"/>
|
|
|
</template>
|
|
@@ -190,7 +44,6 @@ export default defineComponent({
|
|
|
props: {
|
|
|
baseMapLayers: {},
|
|
|
baseMapView: {},
|
|
|
- layout: {}
|
|
|
},
|
|
|
emits: ['easyMapLoad', 'zoomChange'],
|
|
|
setup(props, { emit }) {
|
|
@@ -349,87 +202,5 @@ export default defineComponent({
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
- .draw-edits-config {
|
|
|
- height: 54px;
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- bottom: 0;
|
|
|
- z-index: 2000;
|
|
|
- background-color: #fff;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- font-size: 14px;
|
|
|
- padding: 0 10px;
|
|
|
- border-top-right-radius: 6px;
|
|
|
- $mR: 10px;
|
|
|
- .draw-edits-config_feature-type {
|
|
|
- width: 90px;
|
|
|
- }
|
|
|
- .draw-edits-config_position {
|
|
|
- border: 1px solid #eee;
|
|
|
- border-radius: 25px;
|
|
|
- padding: 5px 15px;
|
|
|
- margin-left: $mR;
|
|
|
- color: #255fef;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- .reference {
|
|
|
- width: 70px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-around;
|
|
|
- }
|
|
|
- }
|
|
|
- .draw-edits-config_icon {
|
|
|
- border: 1px solid #eee;
|
|
|
- border-radius: 25px;
|
|
|
- padding: 5px 15px;
|
|
|
- color: #255fef;
|
|
|
- margin-left: $mR;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- .icon {
|
|
|
- margin-right: 6px;
|
|
|
- width: 20px;
|
|
|
- height: 20px;
|
|
|
- }
|
|
|
- .text {
|
|
|
- max-width: 100px;
|
|
|
- }
|
|
|
- }
|
|
|
- .draw-edits-config_split {
|
|
|
- background-color: #eee;
|
|
|
- margin: 0 $mR;
|
|
|
- width: 1px;
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
- .draw-edits-config_line, .draw-edits-config_poly {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- .text {
|
|
|
- font-size: 14px;
|
|
|
- color: #333333;
|
|
|
- word-break: keep-all;
|
|
|
- margin-right: $mR;
|
|
|
- }
|
|
|
- .width {
|
|
|
- width: 80px;
|
|
|
- margin-right: $mR;
|
|
|
- }
|
|
|
- .type {
|
|
|
- width: 94px;
|
|
|
- margin-left: $mR;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-.base-switch {
|
|
|
- position: absolute;
|
|
|
- top: 0;
|
|
|
- right: 0;
|
|
|
}
|
|
|
</style>
|