index.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <template>
  2. <div class="mapCom">
  3. <div class="mapMain">
  4. <div id="map"></div>
  5. </div>
  6. <div class="mapDetail">
  7. <span class="title">数据详情</span>
  8. <div class="detailMsg" v-for="(it, index) in drawLayers" :key="index">
  9. <div class="detailMsgTop">
  10. <span style="margin-right: 10px">绘制图形:{{ layerTypeFn(it.layerType) }}</span>
  11. <span>绘制ID:{{ it.layer._leaflet_id }}</span>
  12. </div>
  13. <!-- 标记和圆形标记 -->
  14. <div
  15. class="detailMsgBot"
  16. v-if="it.layerType === 'marker' || it.layerType === 'circlemarker'"
  17. >
  18. <span style="margin-right: 10px">精度:{{ it.layer._latlng.lat }}</span>
  19. <span>纬度:{{ it.layer._latlng.lng }}</span>
  20. </div>
  21. <!-- 圆形区域 -->
  22. <div class="detailMsgBot" v-if="it.layerType === 'circle'">
  23. <span>半径:{{ it.layer._mRadius }}m</span>
  24. <span style="margin-right: 10px">精度:{{ it.layer._latlng.lat }}</span>
  25. <span>纬度:{{ it.layer._latlng.lng }}</span>
  26. </div>
  27. <!-- 线段 -->
  28. <div class="detailMsgBot" v-if="it.layerType === 'polyline'">
  29. <div v-for="(iv, idx) in it.layer._latlngs" :key="idx" style="margin: 5px 0">
  30. <span style="margin-right: 10px">精度:{{ iv.lat }}</span>
  31. <span>纬度:{{ iv.lng }}</span>
  32. </div>
  33. </div>
  34. <!-- 多边形区域 -->
  35. <div class="detailMsgBot" v-if="it.layerType === 'polygon'">
  36. <div v-for="(iv, idx) in it.layer._latlngs[0]" :key="idx" style="margin: 5px 0">
  37. <span style="margin-right: 10px">精度:{{ iv.lat }}</span>
  38. <span>纬度:{{ iv.lng }}</span>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <script setup>
  46. import { ref, nextTick, onMounted, reactive, watch } from 'vue'
  47. import { CanvasLabel } from '@panzhiyue/leaflet-canvaslabel'
  48. import img from '@/assets/mapdarw/images/marker-icon.png'
  49. const map = ref(null)
  50. const drawLayerGroup = ref(null)
  51. const drawLayers = ref([])
  52. const tilsUrl = ref('./static/kMapTiles/{z}/{x}/{y}.jpg')
  53. const initMap = () => {
  54. var map = L.map('map', {
  55. center: [39.918758195008294, 116.3972282409668], // 地图中心--北京
  56. zoom: 16, //缩放比列
  57. // drawControl: true
  58. zoomControl: false, //禁用 + - 按钮
  59. // doubleClickZoom: true, // 禁用双击放大
  60. attributionControl: false // 移除右下角leaflet标识
  61. // preferCanvas: true
  62. })
  63. let name = L.tileLayer(
  64. 'http://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x}&y={y}&z={z}'
  65. ).addTo(map)
  66. drawLayerGroup.value = new L.FeatureGroup()
  67. map.addLayer(drawLayerGroup.value)
  68. var MyCustomMarker = L.Icon.extend({
  69. options: {
  70. shadowUrl: null,
  71. iconAnchor: new L.Point(12, 12),
  72. iconSize: new L.Point(24, 36),
  73. iconUrl: img
  74. }
  75. })
  76. var options = {
  77. position: 'topleft',
  78. draw: {
  79. polyline: {
  80. shapeOptions: {
  81. color: '#f357a1',
  82. weight: 5
  83. }
  84. },
  85. polygon: {
  86. allowIntersection: false, // Restricts shapes to simple polygons
  87. drawError: {
  88. color: '#e1e100', // Color the shape will turn when intersects
  89. message: "<strong>Oh snap!<strong> you can't draw that!" // Message that will show when intersect
  90. },
  91. shapeOptions: {
  92. color: '#bada55'
  93. }
  94. },
  95. rectangle: false,
  96. marker: {
  97. icon: new MyCustomMarker()
  98. }
  99. },
  100. edit: {
  101. featureGroup: drawLayerGroup.value, //REQUIRED!!
  102. remove: true
  103. }
  104. }
  105. initDrawTooltip()
  106. var drawControl = new L.Control.Draw(options)
  107. map.addControl(drawControl)
  108. map.on(L.Draw.Event.CREATED, function (e) {
  109. let type = e.layerType,
  110. layer = e.layer
  111. console.log('created====>>>', e)
  112. if (type === 'marker') {
  113. layer.bindPopup('A popup!')
  114. }
  115. drawLayerGroup.value.addLayer(layer)
  116. drawLayers.value.push(e)
  117. })
  118. map.on(L.Draw.Event.EDITED, function (e) {
  119. let type = e.layerType,
  120. layer = e.layer
  121. console.log('editmove====>>>', e)
  122. })
  123. map.on(L.Draw.Event.DELETED, function (e) {
  124. console.log('deleted====>>>', e)
  125. for (let i in e.layers._layers) {
  126. drawLayers.value.forEach((it, index) => {
  127. if (it.layer._leaflet_id.toString() === i) {
  128. drawLayers.value.splice(index, 1)
  129. }
  130. })
  131. }
  132. })
  133. }
  134. const initDrawTooltip = () => {
  135. L.drawLocal.draw.handlers.polygon = {
  136. tooltip: {
  137. start: '点击地图开始绘制多边形',
  138. cont: '继续选择',
  139. end: '点击第一个顶点完成绘制'
  140. }
  141. }
  142. L.drawLocal.draw.toolbar.buttons.polyline = '绘制-线'
  143. L.drawLocal.draw.toolbar.buttons.polygon = '绘制-多边形区域'
  144. L.drawLocal.draw.toolbar.buttons.circle = '绘制-圆形区域'
  145. L.drawLocal.draw.toolbar.buttons.marker = '绘制-定点标记'
  146. L.drawLocal.draw.toolbar.buttons.circlemarker = '绘制-定点圆形标记'
  147. L.drawLocal.edit.toolbar.actions.save.text = '保存'
  148. L.drawLocal.edit.toolbar.actions.save.title = '保存'
  149. L.drawLocal.edit.toolbar.actions.cancel.text = '取消'
  150. L.drawLocal.edit.toolbar.actions.cancel.title = '取消'
  151. L.drawLocal.edit.toolbar.actions.clearAll.text = '清除全部'
  152. L.drawLocal.edit.toolbar.actions.clearAll.title = '清除全部'
  153. L.drawLocal.edit.toolbar.buttons.editDisabled = '暂无区域可编辑'
  154. L.drawLocal.edit.toolbar.buttons.removeDisabled = '暂无区域可删除'
  155. L.drawLocal.edit.handlers.remove.tooltip.text = '选中一个区域去清除'
  156. L.drawLocal.edit.toolbar.buttons.edit = '编辑'
  157. L.drawLocal.edit.toolbar.buttons.remove = '删除'
  158. L.drawLocal.edit.toolbar.buttons.cancel = '取消'
  159. L.drawLocal.edit.toolbar.buttons.save = '保存'
  160. L.drawLocal.draw.toolbar.actions.text = '取消'
  161. L.drawLocal.draw.toolbar.actions.title = '取消绘制'
  162. L.drawLocal.draw.toolbar.finish.text = '完成'
  163. L.drawLocal.draw.toolbar.finish.title = '完成绘制'
  164. L.drawLocal.draw.toolbar.undo.text = '撤销'
  165. L.drawLocal.draw.toolbar.undo.title = '撤销'
  166. L.drawLocal.edit.handlers.edit.tooltip.subtext = '点击取消以撤消更改'
  167. L.drawLocal.edit.handlers.edit.tooltip.text = '拖动标记以编辑图形'
  168. }
  169. const layerTypeFn = (type) => {
  170. let name = ''
  171. if (type === 'marker') {
  172. name = '标记'
  173. } else if (type === 'circlemarker') {
  174. name = '圆形标记'
  175. } else if (type === 'polyline') {
  176. name = '线段'
  177. } else if (type === 'polygon') {
  178. name = '多边形区域'
  179. } else if (type === 'circle') {
  180. name = '圆形区域'
  181. }
  182. return name
  183. }
  184. const getData = (map) => {
  185. var latlngs = [
  186. [40.912569, 111.840153],
  187. [39.094994, 106.742496],
  188. [33.503718, 103.05109]
  189. ]
  190. L.polyline(latlngs, { color: 'red' }).addTo(map)
  191. }
  192. onMounted(() => {
  193. initMap()
  194. })
  195. </script>
  196. <style scoped lang="sass">
  197. .mapCom
  198. display: flex
  199. height: 85vh
  200. .iconLabel
  201. width: 80px !important
  202. .iconSty
  203. &Class
  204. width: 50px
  205. height: 100px
  206. position: relative
  207. top: 40px
  208. .mapMain
  209. width: 80vw
  210. height: 100%
  211. .mapDetail
  212. padding: 5px 10px
  213. width: calc(20vw - 20px)
  214. height: calc(100% - 10px)
  215. background: #fff
  216. overflow-y: auto
  217. .title
  218. font-size: 15px
  219. font-weight: bold
  220. .detailMsg
  221. margin: 10px 0
  222. border-bottom: 1px solid #000
  223. .detailMsgTop
  224. span
  225. font-size: 14px
  226. font-weight: bold
  227. opacity: 0.7
  228. .detailMsgBot
  229. margin-bottom: 10px
  230. span
  231. display: inline-block
  232. font-size: 14px
  233. font-weight: bold
  234. opacity: 0.7
  235. #map
  236. width: 100%
  237. height: 100%
  238. </style>