|
@@ -104,7 +104,9 @@
|
104
|
104
|
<el-input v-model="form.parkName" placeholder="请输入园区名称" />
|
105
|
105
|
</el-form-item>
|
106
|
106
|
<el-form-item label="坐标" prop="location">
|
107
|
|
- <el-input v-model="form.location" placeholder="请输入坐标" />
|
|
107
|
+ <el-input v-model="form.location" @focus="openditu">
|
|
108
|
+ {{ form.location}}
|
|
109
|
+ </el-input>
|
108
|
110
|
</el-form-item>
|
109
|
111
|
<el-form-item label="备注" prop="memo">
|
110
|
112
|
<el-input v-model="form.memo" type="textarea" placeholder="请输入内容" />
|
|
@@ -115,6 +117,19 @@
|
115
|
117
|
<el-button @click="cancel">取 消</el-button>
|
116
|
118
|
</div>
|
117
|
119
|
</el-dialog>
|
|
120
|
+
|
|
121
|
+ <el-dialog title="地图" :visible.sync="dialogVisible" width="80%">
|
|
122
|
+ <div id='mainMap'>
|
|
123
|
+ <div id="mapDiv" style="width:100%; height:700px">
|
|
124
|
+ </div>
|
|
125
|
+ </div>
|
|
126
|
+ <input type="button" value="清除" @click='clearmian()' />
|
|
127
|
+ <input type="button" value="标点工具" @click='openMarkTool()' />
|
|
128
|
+ <span slot="footer" class="dialog-footer">
|
|
129
|
+ <el-button @click="dialogVisible = false">取 消</el-button>
|
|
130
|
+ <el-button type="primary" @click='tijiao'>确定</el-button>
|
|
131
|
+ </span>
|
|
132
|
+ </el-dialog>
|
118
|
133
|
</div>
|
119
|
134
|
</template>
|
120
|
135
|
|
|
@@ -125,6 +140,15 @@ export default {
|
125
|
140
|
name: "ParkInfo",
|
126
|
141
|
data() {
|
127
|
142
|
return {
|
|
143
|
+ parkList: [],
|
|
144
|
+ dialogVisible: false,
|
|
145
|
+ map: null,
|
|
146
|
+ handler: null,
|
|
147
|
+ markPoints: '', // 保存标记点的坐标
|
|
148
|
+ equipmentTypeList: [],
|
|
149
|
+ areaList: [],
|
|
150
|
+ roomList: [],
|
|
151
|
+ buildingList: [],
|
128
|
152
|
// 遮罩层
|
129
|
153
|
loading: true,
|
130
|
154
|
// 导出遮罩层
|
|
@@ -174,6 +198,81 @@ export default {
|
174
|
198
|
this.loading = false;
|
175
|
199
|
});
|
176
|
200
|
},
|
|
201
|
+ // 销毁天地图
|
|
202
|
+ destructionTMap () {
|
|
203
|
+ if (this.map) {
|
|
204
|
+ this.map = null;
|
|
205
|
+ // 直接将节点给删掉
|
|
206
|
+ console.log('1qsad');
|
|
207
|
+
|
|
208
|
+ const parentEl = document.getElementById('mainMap');
|
|
209
|
+ const cahildrenEl1 = document.getElementById('mapDiv');
|
|
210
|
+ if(cahildrenEl1) parentEl.removeChild(cahildrenEl1);
|
|
211
|
+ // 然后再手动将节点加进来
|
|
212
|
+ const newCahildrenEl = document.createElement("div");
|
|
213
|
+ newCahildrenEl.id = 'mapDiv'
|
|
214
|
+ newCahildrenEl.style = 'height: 700px;width: 100%;'
|
|
215
|
+ parentEl.appendChild(newCahildrenEl)
|
|
216
|
+ }
|
|
217
|
+ },
|
|
218
|
+
|
|
219
|
+ tijiao() {
|
|
220
|
+ console.log('多边形数据:', this.form.rasterLngLat);
|
|
221
|
+ console.log('多边形数据:', this.markPoints);
|
|
222
|
+ this.form.location = this.markPoints
|
|
223
|
+ this.destructionTMap()
|
|
224
|
+ this.dialogVisible = false;
|
|
225
|
+ },
|
|
226
|
+
|
|
227
|
+ clearmian() {
|
|
228
|
+ if (this.handler) this.handler.close();
|
|
229
|
+ this.map.clearOverLays(); // 清除所有覆盖物
|
|
230
|
+ this.markPoints = ''; // 清除保存的标记点坐标
|
|
231
|
+ },
|
|
232
|
+
|
|
233
|
+ openMarkTool() {
|
|
234
|
+ console.log("1111111111")
|
|
235
|
+ if (this.handler) this.handler.close(); // 关闭之前的工具
|
|
236
|
+
|
|
237
|
+ this.handler = new T.MarkTool(this.map); // 创建标点工具
|
|
238
|
+ this.handler.open(); // 打开标点工具
|
|
239
|
+
|
|
240
|
+ this.handler.on("mouseup", (e) => {
|
|
241
|
+ let drawData1 = e.currentLnglat.lat+","+e.currentLnglat.lng;
|
|
242
|
+ this.markPoints = drawData1;
|
|
243
|
+ });
|
|
244
|
+
|
|
245
|
+ this.handler.on("close", () => {
|
|
246
|
+ // 标点工具关闭时的处理
|
|
247
|
+ this.handler = null;
|
|
248
|
+ });
|
|
249
|
+ },
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+ openditu() {
|
|
253
|
+ console.log('打开地图对话框');
|
|
254
|
+ this.dialogVisible = true;
|
|
255
|
+ this.$nextTick(() => {
|
|
256
|
+ const T = window.T;
|
|
257
|
+ const zoom = 12;
|
|
258
|
+ this.map = new T.Map('mapDiv');
|
|
259
|
+ this.map.centerAndZoom(new T.LngLat(103.96, 30.66), zoom);
|
|
260
|
+ // 创建标注工具对象
|
|
261
|
+ this.handler = new T.MarkTool(this.map);
|
|
262
|
+ console.log('handler 初始化完成:', this.handler);
|
|
263
|
+ console.log('kanknak1', this.form.location);
|
|
264
|
+ let points = new T.LngLat();
|
|
265
|
+ if (this.form.location) {
|
|
266
|
+ const coordinates = this.form.location.split(',');
|
|
267
|
+ points = new T.LngLat(coordinates[1], coordinates[0]);
|
|
268
|
+ }
|
|
269
|
+ // 创建面对象
|
|
270
|
+ console.log('kanknak2', points);
|
|
271
|
+ const marker = new T.Marker(points);
|
|
272
|
+ // 向地图上添加面
|
|
273
|
+ this.map.addOverLay(marker);
|
|
274
|
+ });
|
|
275
|
+ },
|
177
|
276
|
// 取消按钮
|
178
|
277
|
cancel() {
|
179
|
278
|
this.open = false;
|
|
@@ -223,9 +322,9 @@ export default {
|
223
|
322
|
},
|
224
|
323
|
/** 提交按钮 */
|
225
|
324
|
submitForm() {
|
226
|
|
- if (this.form.location){
|
227
|
|
- this.form.location = JSON.parse(this.form.location)
|
228
|
|
- }
|
|
325
|
+ // if (this.form.location){
|
|
326
|
+ // this.form.location = JSON.parse(this.form.location)
|
|
327
|
+ // }
|
229
|
328
|
this.$refs["form"].validate(valid => {
|
230
|
329
|
if (valid) {
|
231
|
330
|
if (this.form.parkId != null) {
|