@vtx/map 1.1.18 → 1.1.20
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/lib/VtxSearchCheckMap/VtxSearchCheckMap.css +171 -0
- package/lib/VtxSearchCheckMap/VtxSearchCheckMap.js +1182 -0
- package/lib/VtxSearchCheckMap/VtxSearchCheckMap.js.map +1 -0
- package/lib/VtxSearchCheckMap/VtxSearchCheckMap.less +171 -0
- package/lib/VtxSearchCheckMap/VtxSearchCheckMapAntd3.css +0 -0
- package/lib/VtxSearchCheckMap/VtxSearchCheckMapAntd3.less +1 -0
- package/lib/VtxSearchCheckMap/index.js +22 -0
- package/lib/VtxSearchCheckMap/index.js.map +1 -0
- package/lib/VtxSearchCheckMap/mapping.js +18 -0
- package/lib/VtxSearchCheckMap/mapping.js.map +1 -0
- package/lib/VtxSearchCheckMap/style/css.js +47 -0
- package/lib/VtxSearchCheckMap/style/css.js.map +1 -0
- package/lib/VtxSearchCheckMap/style/index.js +47 -0
- package/lib/VtxSearchCheckMap/style/index.js.map +1 -0
- package/lib/index.js +8 -0
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VtxSearchCheckMap.js","names":["styles","searchModal","searchMap","top","bottom","content","show","hidden","w_l","content_left","listTitle","title","btn","lists","select","scrollauto","content_right","showLabel","hiddenLabel","otherModal","warning","message","distinct","ary","pts","length","pop","getIcon","type","antdMajorVersion","iconMapping","VtxSearchCheckMap","props","graphicType","resData","state","graphicValue","editGraphic","forEach","item","push","rings","geometry","area","map","getPolygonArea","mapLoaded","isDrawStatus","isClickMap","apid","loadExtent","mapId","Date","getTime","multiDraw","includes","clickable","isShowList","locationPoint","searchValue","listPoint","listMess","isDraw","parameter","drawParameter","drawGraphID","mapCenter","maxZoom","minZoom","wkid","mapType","mapStyle","mapServer","setCenter","mapVisiblePoints","fitView","setVisiblePoints","isDoEdit","isEndEdit","editGraphicId","mapZoomLevel","setZoomLevel","modal1Visible","isShowOther","otherText","isShowOtherGraph","olProps","checkValue","fun","getGraphic","p","id","x","y","radius","getMultiRes","paths","calculateDistance","clearDrawnGraph","bealoon","setState","t","gis","extent","xmax","lglt","getMapExtent","editParam","Array","isArray","index","isinit","longitude","nowCenter","lng","latitude","lat","url","require","config","zIndex","setTimeout","drawLocationPoint","updatePoint","e","target","value","searchPoints","then","results","lsp","lsm","i","r","labelClass","labelContent","isSelect","setFitView","lnglats","split","RegExp","test","centerPoint","correction","obj","attributes","other","chooseAddress","param","closeModal","isCloseDraw","info","console","log","InputProps","style","width","placeholder","onChange","changeValue","bind","onPressEnter","searchList","onKeyDown","checkInputProps","drawProps","drawEnd","objparam","geometryType","mapDraw","color","pellucidity","lineWidth","lineType","lineColor","lineOpacity","data","mapPoints","mapLines","mapPolygons","mapCircles","otherGraph","point","polyline","polygon","circle","height","window","innerHeight","callback","counterCheck","clearList","removeGraphic","continueDraw","checked","paddingLeft","showOrhidden","editGraphicChange","clickGraphic","loadMapComplete","initSearchMap","prevProps","prevState","nextProps","clearAll","mapLayer","setPosition","BMap","Point","AMap","LngLat","setLngLat","T","setLatitude","setLongitude","graphics","refresh","setGeometry","ol","geom","clearInterval","React","Component"],"sources":["VtxSearchCheckMap/VtxSearchCheckMap.js"],"sourcesContent":["import React from \"react\";\r\nimport Button from \"antd/lib/button\";\r\nimport Input from \"antd/lib/input\";\r\nimport message from \"antd/lib/message\";\r\nimport Checkbox from \"antd/lib/checkbox\";\r\nimport Radio from \"antd/lib/radio\";\r\nimport { VtxModal } from \"../VtxModal\";\r\nimport { VtxMap } from \"../VtxMap\";\r\n//公共地址配置\r\nimport configUrl, { VtxMapIcon, antdMajorVersion } from \"../default\";\r\nimport { iconMapping } from \"./mapping\";\r\n\r\nconst styles = {\r\n searchModal: \"vtx-ui-searchmap-searchmodal\",\r\n searchMap: \"vtx-ui-searchmap-searchmap\",\r\n top: \"vtx-ui-searchmap-top\",\r\n bottom: \"vtx-ui-searchmap-bottom\",\r\n content: \"vtx-ui-searchmap-content\",\r\n show: \"vtx-ui-searchmap-show\",\r\n hidden: \"vtx-ui-searchmap-hidden\",\r\n w_l: \"vtx-ui-searchmap-w_l\",\r\n content_left: \"vtx-ui-searchmap-content_left\",\r\n listTitle: \"vtx-ui-searchmap-listtitle\",\r\n title: \"vtx-ui-searchmap-title\",\r\n btn: \"vtx-ui-searchmap-btn\",\r\n lists: \"vtx-ui-searchmap-lists\",\r\n select: \"vtx-ui-searchmap-select\",\r\n scrollauto: \"vtx-ui-searchmap-scrollauto\",\r\n content_right: \"vtx-ui-searchmap-content_right\",\r\n showLabel: \"vtx-ui-searchmap-showlabel\",\r\n hiddenLabel: \"vtx-ui-searchmap-hiddenlabel\",\r\n otherModal: \"vtx-ui-searchmap-othermodal\",\r\n};\r\n\r\n// message.config({\r\n// top: document.getElementById('root').offsetHeight/3,\r\n// duration: 5,\r\n// });\r\nconst warning = () => {\r\n message.warning(\"位置点查询失败,请缩小比例尺或切换关键字后再重新查询!\");\r\n};\r\nfunction distinct(ary) {\r\n let pts = [...ary];\r\n if (\r\n pts[0][0] == pts[pts.length - 1][0] &&\r\n pts[0][1] == pts[pts.length - 1][1]\r\n ) {\r\n pts.pop();\r\n return distinct(pts);\r\n } else {\r\n return pts;\r\n }\r\n}\r\n\r\nconst getIcon = (type) => {\r\n return antdMajorVersion === \"4\" ? (\r\n <VtxMapIcon type={`icon-${iconMapping[type]}`} />\r\n ) : (\r\n type\r\n );\r\n};\r\n\r\nclass VtxSearchCheckMap extends React.Component {\r\n constructor(props) {\r\n super(props);\r\n this.map = null; //Map组件的ref对象\r\n this.mapLoaded = false;\r\n this.isDrawStatus = false;\r\n this.isClickMap = false;\r\n this.apid = []; //所有点id,除编辑点外\r\n this.loadExtent = null;\r\n this.mapId = `searchMap${new Date().getTime()}`;\r\n this.multiDraw = props.multiDraw && [\"polygon\"].includes(props.graphicType);\r\n (this.clickable = false), // 多个面绘制时,是否可以点击面进行编辑\r\n (this.state = {\r\n //列表和地图宽度切换的动画需要\r\n isShowList: false,\r\n //可拖动用于定位的点\r\n locationPoint: [],\r\n //搜索框文字\r\n searchValue: \"\",\r\n //搜索出来的列表点位\r\n listPoint: [],\r\n //列表数据\r\n listMess: [],\r\n // 返回点位/图形\r\n graphicType: props.graphicType || \"point\",\r\n isDraw: props.graphicType !== \"point\",\r\n parameter: props.drawParameter,\r\n graphicValue: this.multiDraw ? [] : null,\r\n // 绘制图元id集合\r\n drawGraphID: this.multiDraw ? [\"drawnGraph\"] : \"drawnGraph\",\r\n /*地图Api参数*/\r\n mapCenter: props.mapCenter || \"\",\r\n maxZoom: props.maxZoom,\r\n minZoom: props.minZoom,\r\n wkid: props.wkid,\r\n mapType: props.mapType || \"bmap\",\r\n mapStyle: props.mapStyle,\r\n mapServer: props.mapServer,\r\n setCenter: false,\r\n mapVisiblePoints: {\r\n fitView: [],\r\n type: \"all\",\r\n },\r\n setVisiblePoints: false,\r\n isDoEdit: false,\r\n isEndEdit: false,\r\n editGraphicId: \"\",\r\n editGraphic: this.multiDraw ? [] : null,\r\n mapZoomLevel: props.mapZoomLevel || 11,\r\n setZoomLevel: false,\r\n /*modal参数*/\r\n modal1Visible: props.modal1Visible || false,\r\n isShowOther: props.isShowOther || false,\r\n otherText: props.otherText || \"显示服务区域\",\r\n isShowOtherGraph: props.isShowOther || false,\r\n // openlayer\r\n olProps: props.olProps,\r\n // 坐标反查\r\n checkValue: false,\r\n });\r\n }\r\n\r\n // 绘制多个图元时返回参数\r\n getMultiRes = (graphicType) => {\r\n const resData = [];\r\n const { graphicValue, editGraphic } = this.state;\r\n\r\n switch (graphicType) {\r\n case \"polygon\":\r\n [...(graphicValue || []), ...(editGraphic || [])].forEach((item) => {\r\n resData.push({\r\n rings: distinct(item.rings || item.geometry.rings),\r\n area: this.map.getPolygonArea(\r\n distinct(item.rings || item.geometry.rings)\r\n ),\r\n });\r\n });\r\n break;\r\n default:\r\n break;\r\n }\r\n return resData.length ? resData : null;\r\n };\r\n //经纬度回调\r\n callback(fun = \"callback\") {\r\n if (fun in this.props && typeof this.props[fun] === \"function\") {\r\n let { editGraphicId } = this.state;\r\n switch (this.state.graphicType) {\r\n case \"point\":\r\n let { locationPoint } = this.state;\r\n if (this.map.getGraphic(\"locationPoint\")) {\r\n let p = this.map.getGraphic(locationPoint[0].id).geometry;\r\n this.props[fun]([p.x, p.y]);\r\n } else {\r\n return [];\r\n }\r\n break;\r\n case \"circle\":\r\n this.props[fun](\r\n this.state.graphicValue\r\n ? {\r\n x: this.state.graphicValue.geometry.x,\r\n y: this.state.graphicValue.geometry.y,\r\n radius: this.state.graphicValue.geometry.radius,\r\n area: this.state.graphicValue.area,\r\n }\r\n : null\r\n );\r\n break;\r\n case \"polygon\":\r\n if (this.multiDraw) {\r\n this.props[fun](this.getMultiRes(\"polygon\"));\r\n return;\r\n }\r\n if (this.map.getGraphic(editGraphicId)) {\r\n let p = this.map.getGraphic(editGraphicId);\r\n this.props[fun]({\r\n rings: distinct(p.geometry.rings),\r\n area: this.map.getPolygonArea(distinct(p.geometry.rings)),\r\n });\r\n } else {\r\n this.props[fun](\r\n this.state.graphicValue\r\n ? {\r\n rings: distinct(this.state.graphicValue.geometry.rings),\r\n area: this.state.graphicValue.area,\r\n }\r\n : null\r\n );\r\n }\r\n break;\r\n case \"rectangle\":\r\n this.props[fun](\r\n this.state.graphicValue\r\n ? {\r\n rings: distinct(this.state.graphicValue.geometry.rings),\r\n area: this.state.graphicValue.area,\r\n }\r\n : null\r\n );\r\n break;\r\n case \"polyline\":\r\n if (this.map.getGraphic(editGraphicId)) {\r\n let p = this.map.getGraphic(editGraphicId);\r\n this.props[fun]({\r\n paths: p.geometry.paths,\r\n length: this.map.calculateDistance(p.geometry.paths),\r\n });\r\n } else {\r\n this.props[fun](\r\n this.state.graphicValue\r\n ? {\r\n paths: this.state.graphicValue.geometry.paths,\r\n length: this.map.calculateDistance(\r\n this.state.graphicValue.geometry.paths\r\n ),\r\n }\r\n : null\r\n );\r\n }\r\n break;\r\n }\r\n }\r\n if (this.props.clearDrawnGraph) {\r\n this.clearDrawnGraph();\r\n }\r\n }\r\n showOrhidden(bealoon) {\r\n this.setState({\r\n isShowList: bealoon,\r\n });\r\n }\r\n //绘制定位点(以当前的中心点位参照 => 同时开启点位编辑)\r\n drawLocationPoint() {\r\n let t = this;\r\n //判断arcgis,是: 判断中心点是否已经确定,确定,继续走逻辑.不确认.轮询等待\r\n if (\r\n this.props.mapType !== \"gmap\" ||\r\n (this.map.state.gis.extent && !!this.map.state.gis.extent.xmax)\r\n ) {\r\n let lglt = this.map.getMapExtent(),\r\n editGraphic = null,\r\n editGraphicId = \"locationPoint\";\r\n if (!this.multiDraw && this.props.editParam) {\r\n // && (this.props.graphicType == 'polyline' || this.props.graphicType == 'polygon')\r\n editGraphic = { ...this.props.editParam, id: \"drawnGraph\" };\r\n editGraphicId = \"drawnGraph\";\r\n }\r\n if (\r\n this.multiDraw &&\r\n Array.isArray(this.props.editParam) &&\r\n this.props.editParam.length\r\n ) {\r\n // && (this.props.graphicType == 'polyline' || this.props.graphicType == 'polygon')\r\n editGraphic = this.props.editParam.map((item, index) => ({\r\n ...item,\r\n id: `drawnGraph${index}`,\r\n }));\r\n editGraphicId = null;\r\n }\r\n this.isinit = false;\r\n this.setState(\r\n {\r\n editGraphic,\r\n locationPoint: [\r\n {\r\n id: \"locationPoint\",\r\n longitude: (t.props.mapCenter || [])[0] || lglt.nowCenter.lng,\r\n latitude: (t.props.mapCenter || [])[1] || lglt.nowCenter.lat,\r\n // url: `${configUrl.mapServerURL}/images/defaultMarker.png`,\r\n url: require(\"../VtxMap/images/defaultMarker.png\"),\r\n config: {\r\n zIndex: 1000,\r\n },\r\n },\r\n ],\r\n },\r\n () => {\r\n t.setState(\r\n {\r\n isDoEdit: true,\r\n editGraphicId,\r\n },\r\n () => {\r\n setTimeout(() => {\r\n t.setState({\r\n isDoEdit: false,\r\n });\r\n }, 500);\r\n }\r\n );\r\n }\r\n );\r\n } else {\r\n t.loadExtent = setTimeout(() => {\r\n t.drawLocationPoint();\r\n }, 50);\r\n }\r\n }\r\n //校正定位的点位位置到当前的中心点\r\n correction() {\r\n let t = this;\r\n //获取当前中心点经纬度\r\n let lglt = this.map.getMapExtent();\r\n let { locationPoint, checkValue } = t.state;\r\n locationPoint = locationPoint.map((item, index) => {\r\n return {\r\n ...item,\r\n longitude: lglt.nowCenter.lng,\r\n latitude: lglt.nowCenter.lat,\r\n };\r\n });\r\n this.map.updatePoint(locationPoint);\r\n // 若坐标反查选中,校正是需要更新输入框中的经纬度\r\n if (checkValue)\r\n this.setState({\r\n searchValue: `${lglt.nowCenter.lng},${lglt.nowCenter.lat}`,\r\n });\r\n }\r\n //搜索关键字切换\r\n changeValue(e) {\r\n this.setState({\r\n searchValue: e.target.value,\r\n });\r\n }\r\n //根据关键字搜索数据\r\n searchList() {\r\n //因为antd组件问题,这边使用手动关键位,控制方法执行\r\n let t = this;\r\n if (!this.state.checkValue) {\r\n // 非点位并且点位非坐标反查时\r\n let searchPoints = t.map.searchPoints(this.state.searchValue);\r\n searchPoints.then((results) => {\r\n if (results.length > 0) {\r\n let lsp = [],\r\n lsm = [];\r\n t.apid = [];\r\n for (let i = 0; i < results.length; i++) {\r\n let r = results[i];\r\n lsp.push({\r\n ...results[i],\r\n // url: `${configUrl.mapServerURL}/images/defaultMarker_selected.png`,\r\n url: require(\"../VtxMap/images/defaultMarker_selected.png\"),\r\n labelClass: styles.hiddenLabel,\r\n });\r\n lsm.push({\r\n id: r.id,\r\n title: r.config.labelContent,\r\n isSelect: false,\r\n });\r\n t.apid.push(r.id);\r\n }\r\n t.setState({\r\n listPoint: lsp,\r\n listMess: lsm,\r\n isShowList: true,\r\n });\r\n t.setFitView();\r\n } else {\r\n warning();\r\n }\r\n });\r\n } else {\r\n // 点位弹框并坐标反查情况\r\n let lnglats = this.state.searchValue?.split(\",\");\r\n // 英文逗号分割,若长度为不为2,表示数据格式错误\r\n if (lnglats?.length !== 2) {\r\n message.warning(\"请按正确的经纬度格式输入,经度在前,用英文逗号隔开!\");\r\n return;\r\n }\r\n // 经纬度分别正则校验\r\n if (\r\n !new RegExp(\r\n /^[\\-\\+]?(0(\\.\\d{1,15})?|([1-9](\\d)?)(\\.\\d{1,15})?|1[0-7]\\d{1}(\\.\\d{1,15})?|180\\.0{1,15})$/\r\n ).test(lnglats[0])\r\n ) {\r\n message.warning(\"请输入正确格式经度!\");\r\n return;\r\n }\r\n if (\r\n !new RegExp(\r\n /^[\\-\\+]?((0|([1-8]\\d?))(\\.\\d{1,15})?|90(\\.0{1,15})?)$/\r\n ).test(lnglats[1])\r\n ) {\r\n message.warning(\"请输入正确格式纬度!\");\r\n return;\r\n }\r\n // 正确的经纬度作为地图中心点\r\n let centerPoint = [\r\n {\r\n id: \"locationPoint\",\r\n longitude: lnglats[0],\r\n latitude: lnglats[1],\r\n url: require(\"../VtxMap/images/defaultMarker.png\"),\r\n config: {\r\n zIndex: 1000,\r\n },\r\n },\r\n ];\r\n t.setState({\r\n setCenter: true,\r\n mapCenter: lnglats,\r\n locationPoint: centerPoint,\r\n });\r\n this.map.updatePoint(centerPoint);\r\n }\r\n }\r\n //返回最佳位置(zoom,center)\r\n setFitView() {\r\n this.setState(\r\n {\r\n mapVisiblePoints: {\r\n fitView: this.apid,\r\n type: \"all\",\r\n },\r\n setVisiblePoints: true,\r\n },\r\n () => {\r\n this.setState({\r\n setVisiblePoints: false,\r\n });\r\n }\r\n );\r\n }\r\n //清空列表的所有数据(包括点位)\r\n clearList() {\r\n this.apid = [];\r\n this.setState({\r\n searchValue: \"\",\r\n listPoint: [],\r\n listMess: [],\r\n isShowList: false,\r\n });\r\n }\r\n //列表选中地址\r\n chooseAddress(id) {\r\n const t = this;\r\n let { listPoint, listMess } = this.state;\r\n let mapCenter = [];\r\n listPoint = listPoint.map((item, index) => {\r\n if (item.id === id) {\r\n mapCenter = [item.longitude, item.latitude];\r\n return {\r\n ...item,\r\n url: require(\"../VtxMap/images/defaultMarker.png\"),\r\n labelClass: styles.showLabel,\r\n };\r\n } else {\r\n return {\r\n ...item,\r\n url: require(\"../VtxMap/images/defaultMarker_selected.png\"),\r\n labelClass: styles.hiddenLabel,\r\n };\r\n }\r\n });\r\n listMess = listMess.map((item, index) => {\r\n if (item.id === id) {\r\n return {\r\n ...item,\r\n isSelect: true,\r\n };\r\n } else {\r\n return {\r\n ...item,\r\n isSelect: false,\r\n };\r\n }\r\n });\r\n this.setState(\r\n {\r\n listPoint,\r\n listMess,\r\n mapCenter,\r\n setCenter: true,\r\n },\r\n () => {\r\n t.setState({\r\n setCenter: false,\r\n });\r\n if (t.state.graphicType == \"point\") {\r\n t.correction();\r\n }\r\n }\r\n );\r\n }\r\n clickGraphic(obj) {\r\n if (obj.type === \"point\" && obj.attributes.other === \"search\") {\r\n this.chooseAddress(obj.attributes.id);\r\n }\r\n if (this.clickable && obj.type === \"polygon\") {\r\n // 开启编辑\r\n this.setState(\r\n {\r\n editGraphicId: obj.param.id || obj.param.attributes?.id,\r\n isDoEdit: false,\r\n },\r\n () => {\r\n this.setState({\r\n isDoEdit: true,\r\n });\r\n }\r\n );\r\n }\r\n }\r\n closeModal(e) {\r\n if (this.isDrawStatus && this.isClickMap) {\r\n message.warning(\"请双击结束图元编辑\");\r\n } else {\r\n if (\"closeModal\" in this.props) {\r\n this.props.closeModal();\r\n } else {\r\n this.setState({\r\n modal1Visible: false,\r\n });\r\n }\r\n // if(this.props.clearDrawnGraph){\r\n this.clearDrawnGraph();\r\n // }\r\n }\r\n }\r\n clearDrawnGraph() {\r\n this.isDrawStatus = true;\r\n\r\n this.setState(\r\n {\r\n isDraw: this.state.graphicType !== \"point\",\r\n graphicValue: this.multiDraw ? [] : null,\r\n isEndEdit: this.state.graphicType !== \"point\",\r\n },\r\n () => {\r\n this.setState({ isEndEdit: false });\r\n }\r\n );\r\n }\r\n continueDraw() {\r\n this.clickable = false;\r\n this.setState(\r\n {\r\n isDraw: false,\r\n isCloseDraw: true,\r\n isEndEdit: false,\r\n graphicValue: null,\r\n },\r\n () => {\r\n this.setState({\r\n isDraw: true,\r\n isCloseDraw: false,\r\n isEndEdit: true,\r\n });\r\n }\r\n );\r\n }\r\n\r\n editGraphic() {\r\n if (this.isDrawStatus && this.isClickMap) {\r\n message.warning(\"请双击结束图元编辑\");\r\n return;\r\n }\r\n message.info(\"请点击图元进行编辑\");\r\n this.clickable = true;\r\n this.isDrawStatus = false;\r\n this.setState(\r\n {\r\n isDraw: true,\r\n isCloseDraw: false,\r\n isDoEdit: false,\r\n },\r\n () => {\r\n this.setState({\r\n isDraw: false,\r\n isCloseDraw: true,\r\n isDoEdit: true,\r\n });\r\n }\r\n );\r\n }\r\n editGraphicChange(obj) {\r\n const { checkValue } = this.state;\r\n console.log(checkValue);\r\n // 若坐标反查选中\r\n if (checkValue) {\r\n this.setState({\r\n searchValue: `${obj.geometry.x},${obj.geometry.y}`,\r\n });\r\n }\r\n if (!this.multiDraw) return;\r\n const { graphicValue, editGraphic } = this.state;\r\n this.setState({\r\n graphicValue: (graphicValue || []).map((item) =>\r\n item.id === obj.id ? obj : item\r\n ),\r\n editGraphic: (editGraphic || []).map((item) =>\r\n item.id === obj.id ? obj : item\r\n ),\r\n });\r\n }\r\n // 点位反查\r\n counterCheck() {\r\n const { checkValue } = this.state;\r\n this.setState({\r\n checkValue: !checkValue,\r\n });\r\n }\r\n render() {\r\n let t = this;\r\n let {\r\n isShowList,\r\n searchValue,\r\n locationPoint,\r\n listPoint,\r\n listMess,\r\n /*地图参数*/\r\n mapZoomLevel,\r\n setZoomLevel,\r\n maxZoom,\r\n minZoom,\r\n wkid,\r\n mapServer,\r\n mapCenter,\r\n setCenter,\r\n mapType,\r\n mapStyle,\r\n mapVisiblePoints,\r\n setVisiblePoints,\r\n isDoEdit,\r\n editGraphicId,\r\n isEndEdit,\r\n /*modal参数*/\r\n modal1Visible,\r\n drawGraphID,\r\n isShowOther,\r\n otherText,\r\n isShowOtherGraph,\r\n editGraphic,\r\n graphicType,\r\n graphicValue,\r\n // openlayer\r\n olProps,\r\n checkValue,\r\n } = this.state;\r\n const InputProps = {\r\n style: { width: \"200px\", \"margin-right\": \"10px\" },\r\n placeholder: \"输入关键字\",\r\n value: searchValue,\r\n onChange: this.changeValue.bind(this),\r\n onPressEnter: this.searchList.bind(this),\r\n onKeyDown: this.changeValue.bind(this),\r\n };\r\n // 经纬度反查输入框\r\n const checkInputProps = {\r\n style: { width: \"200px\", \"margin-right\": \"10px\" },\r\n placeholder: \"经度在前,英文逗号间隔\",\r\n value: searchValue,\r\n onChange: this.changeValue.bind(this),\r\n onPressEnter: this.searchList.bind(this),\r\n onKeyDown: this.changeValue.bind(this),\r\n };\r\n let drawProps =\r\n this.state.graphicType == \"point\" || t.isinit\r\n ? {\r\n isDraw: this.state.isDraw,\r\n isCloseDraw: this.state.isCloseDraw,\r\n }\r\n : {\r\n isDraw: this.state.isDraw,\r\n isCloseDraw: this.state.isCloseDraw,\r\n drawEnd: (obj) => {\r\n this.isDrawStatus = false;\r\n this.isClickMap = false;\r\n let objparam = {\r\n graphicValue: this.multiDraw\r\n ? [...(graphicValue || []), obj]\r\n : obj,\r\n isDoEdit: !this.multiDraw,\r\n isDraw: this.multiDraw,\r\n };\r\n if (\r\n !this.multiDraw &&\r\n (obj.geometryType == \"polyline\" ||\r\n obj.geometryType == \"polygon\")\r\n ) {\r\n objparam.editGraphicId = obj.id;\r\n }\r\n this.setState(objparam);\r\n },\r\n mapDraw: {\r\n geometryType: this.state.graphicType,\r\n parameter:\r\n this.state.parameter ||\r\n (this.state.graphicType == \"polyline\"\r\n ? {\r\n color: \"#108edf\", //线颜色,\r\n pellucidity: 1, //线透明度,\r\n lineWidth: 3, //线宽度\r\n lineType: \"solid\",\r\n }\r\n : this.state.graphicType == \"polygon\" ||\r\n this.state.graphicType == \"circle\" ||\r\n this.state.graphicType == \"rectangle\"\r\n ? {\r\n color: \"#ffffff\", //填充色,\r\n lineColor: \"#108edf\", //线颜色,\r\n lineOpacity: 1, //线透明度,\r\n lineWidth: 3, //线宽度,\r\n pellucidity: 0.8, //填充透明度\r\n lineType: \"solid\",\r\n }\r\n : {}),\r\n data: this.multiDraw ? null : { id: drawGraphID },\r\n },\r\n };\r\n let mapPoints = [],\r\n mapLines = [],\r\n mapPolygons = [],\r\n mapCircles = [];\r\n if (graphicType == \"point\") {\r\n mapPoints = [...locationPoint, ...listPoint];\r\n } else {\r\n mapPoints = [...listPoint];\r\n }\r\n if (graphicType === \"polygon\") {\r\n if (editGraphic) {\r\n Array.isArray(editGraphic)\r\n ? mapPolygons.push(...editGraphic)\r\n : mapPolygons.push(editGraphic);\r\n !this.multiDraw && (drawProps = null);\r\n }\r\n }\r\n if (graphicType === \"polyline\") {\r\n if (editGraphic) {\r\n mapLines.push(editGraphic);\r\n drawProps = null;\r\n }\r\n }\r\n if (graphicType === \"rectangle\") {\r\n if (editGraphic) {\r\n mapPolygons.push(editGraphic);\r\n drawProps = null;\r\n }\r\n }\r\n if (graphicType === \"circle\") {\r\n if (editGraphic) {\r\n mapCircles.push(editGraphic);\r\n drawProps = null;\r\n }\r\n }\r\n if (isShowOtherGraph) {\r\n let { otherGraph } = this.props;\r\n if (otherGraph) {\r\n mapPoints = [...mapPoints, ...(otherGraph.point || [])];\r\n mapLines = [...mapLines, ...(otherGraph.polyline || [])];\r\n mapPolygons = [...mapPolygons, ...(otherGraph.polygon || [])];\r\n mapCircles = [...mapCircles, ...(otherGraph.circle || [])];\r\n }\r\n }\r\n return (\r\n <VtxModal\r\n title={this.state.graphicType == \"point\" ? \"定位\" : \"绘制\"}\r\n style={{ top: 50 }}\r\n visible={modal1Visible}\r\n maximize={true}\r\n isNotMoving={true}\r\n wrapClassName={styles.searchModal}\r\n bodyStyle={{ height: `${window.innerHeight * 0.7}px` }}\r\n maskClosable={false}\r\n onCancel={this.closeModal.bind(this)}\r\n footer={\r\n <div className={styles.bottom}>\r\n {/*经纬度返回按钮*/}\r\n <Button\r\n type=\"primary\"\r\n onClick={() => {\r\n this.callback();\r\n }}\r\n icon={getIcon(\"check\")}\r\n >\r\n 确定\r\n </Button>\r\n <Button\r\n onClick={this.closeModal.bind(this)}\r\n icon={getIcon(\"close\")}\r\n >\r\n 关闭\r\n </Button>\r\n </div>\r\n }\r\n >\r\n <div className={styles.searchMap}>\r\n {/*地图操作分类*/}\r\n <div className={styles.top}>\r\n {/*搜索多点选择*/}\r\n {mapType == \"gmap\" || mapType == \"olmap\"\r\n ? \"\"\r\n : [\r\n !checkValue ? (\r\n <Input key=\"1\" {...InputProps} />\r\n ) : (\r\n <Input key=\"1\" {...checkInputProps} />\r\n ),\r\n this.state.graphicType == \"point\" ? (\r\n <Radio\r\n onClick={this.counterCheck.bind(this)}\r\n checked={checkValue}\r\n >\r\n 坐标反查\r\n </Radio>\r\n ) : null,\r\n <Button\r\n key=\"2\"\r\n type=\"primary\"\r\n onClick={this.searchList.bind(this)}\r\n icon={getIcon(\"search\")}\r\n >\r\n 查询\r\n </Button>,\r\n <Button\r\n key=\"3\"\r\n onClick={this.clearList.bind(this)}\r\n icon={getIcon(\"close\")}\r\n >\r\n 清空\r\n </Button>,\r\n ]}\r\n {this.state.graphicType == \"point\" ? (\r\n <Button\r\n onClick={this.correction.bind(this)}\r\n icon={getIcon(\"environment\")}\r\n >\r\n 校正\r\n </Button>\r\n ) : null}\r\n {this.state.graphicType != \"point\" ? (\r\n <Button\r\n disabled={this.isDrawStatus}\r\n onClick={() => {\r\n this.isDrawStatus = true;\r\n if (this.multiDraw) {\r\n this.clickable = false;\r\n graphicValue?.forEach((item) =>\r\n t.map.removeGraphic(item.id, \"draw\")\r\n );\r\n editGraphic?.forEach((item) =>\r\n t.map.removeGraphic(item.id, \"draw\")\r\n );\r\n this.setState(\r\n {\r\n isDraw: false,\r\n isCloseDraw: true,\r\n isEndEdit: false,\r\n graphicValue: null,\r\n editGraphic: null,\r\n },\r\n () => {\r\n this.setState({\r\n isDraw: true,\r\n isCloseDraw: false,\r\n isEndEdit: true,\r\n });\r\n }\r\n );\r\n } else {\r\n this.setState(\r\n {\r\n isDraw: true,\r\n graphicValue: null,\r\n editGraphic: null,\r\n isEndEdit: true,\r\n },\r\n () => {\r\n t.map.removeGraphic(\"drawnGraph\", \"draw\");\r\n t.setState({\r\n isEndEdit: false,\r\n });\r\n }\r\n );\r\n }\r\n this.callback(\"editDraw\");\r\n }}\r\n icon={getIcon(\"edit\")}\r\n >\r\n 重新绘制\r\n </Button>\r\n ) : null}\r\n {/* 继续绘制 */}\r\n {this.multiDraw && (\r\n <Button\r\n onClick={this.continueDraw.bind(this)}\r\n icon={getIcon(\"edit\")}\r\n >\r\n 继续绘制\r\n </Button>\r\n )}\r\n {/* 编辑图元 */}\r\n {this.multiDraw && (\r\n <Button\r\n onClick={this.editGraphic.bind(this)}\r\n icon={getIcon(\"edit\")}\r\n >\r\n 编辑图元\r\n </Button>\r\n )}\r\n {mapType == \"gmap\" || mapType == \"olmap\" ? (\r\n \"\"\r\n ) : (\r\n <Button\r\n onClick={this.setFitView.bind(this)}\r\n icon={getIcon(\"sync\")}\r\n >\r\n 返回全局地图\r\n </Button>\r\n )}\r\n {isShowOther ? (\r\n <div className={styles.otherModal}>\r\n <Checkbox\r\n checked={isShowOtherGraph}\r\n onChange={(e) => {\r\n this.setState({ isShowOtherGraph: e.target.checked });\r\n }}\r\n >\r\n {otherText}\r\n </Checkbox>\r\n </div>\r\n ) : (\r\n \"\"\r\n )}\r\n </div>\r\n <div\r\n className={styles.content}\r\n style={{\r\n paddingLeft:\r\n mapType == \"gmap\" || mapType == \"olmap\" ? \"0px\" : \"25px\",\r\n }}\r\n >\r\n {/*左侧列表*/}\r\n {mapType == \"gmap\" || mapType == \"olmap\" ? (\r\n \"\"\r\n ) : (\r\n <div\r\n className={`${styles.content_left} ${\r\n isShowList ? styles.w_l : \"\"\r\n }`}\r\n >\r\n <div className={`${isShowList ? styles.show : styles.hidden}`}>\r\n <div className={styles.listTitle}>\r\n <div className={styles.title}>查询结果</div>\r\n <div\r\n onClick={() => this.showOrhidden(false)}\r\n className={styles.btn}\r\n >\r\n <VtxMapIcon type=\"icon-doubleleft\" />\r\n </div>\r\n </div>\r\n <div className={styles.scrollauto}>\r\n {listMess.map((item, index) => {\r\n return (\r\n <div\r\n key={index}\r\n onClick={() => this.chooseAddress(item.id)}\r\n className={`${styles.lists} ${\r\n item.isSelect ? styles.select : \"\"\r\n }`}\r\n >\r\n {item.title}\r\n </div>\r\n );\r\n })}\r\n </div>\r\n </div>\r\n <div\r\n onClick={() => this.showOrhidden(true)}\r\n className={`${styles.btn} ${\r\n !isShowList ? styles.show : styles.hidden\r\n }`}\r\n >\r\n <VtxMapIcon type=\"icon-doubleright\" />\r\n </div>\r\n </div>\r\n )}\r\n {/*右侧地图*/}\r\n <div className={styles.content_right}>\r\n <VtxMap\r\n getMapInstance={(map) => {\r\n if (map) this.map = map;\r\n }}\r\n mapType={mapType}\r\n mapStyle={mapStyle}\r\n mapServer={mapServer}\r\n wkid={wkid}\r\n mapId={t.mapId}\r\n setCenter={setCenter}\r\n mapCenter={mapCenter}\r\n minZoom={minZoom}\r\n maxZoom={maxZoom}\r\n mapZoomLevel={mapZoomLevel}\r\n setZoomLevel={setZoomLevel}\r\n mapPoints={mapPoints}\r\n mapLines={mapLines}\r\n mapPolygons={mapPolygons}\r\n mapCircles={mapCircles}\r\n mapVisiblePoints={mapVisiblePoints}\r\n setVisiblePoints={setVisiblePoints}\r\n isDoEdit={isDoEdit}\r\n isEndEdit={isEndEdit}\r\n editGraphicId={editGraphicId}\r\n editGraphicChange={this.editGraphicChange.bind(this)}\r\n clickGraphic={this.clickGraphic.bind(this)}\r\n clickMap={() => {\r\n t.isClickMap = true;\r\n }}\r\n olProps={olProps}\r\n {...drawProps}\r\n />\r\n </div>\r\n </div>\r\n </div>\r\n </VtxModal>\r\n );\r\n }\r\n initSearchMap() {\r\n if (this.props.modal1Visible /*&& !this.state.locationPoint[0]*/) {\r\n if (this.map) {\r\n this.map.loadMapComplete.then(() => {\r\n if (!this.mapLoaded) {\r\n this.mapLoaded = true;\r\n this.drawLocationPoint();\r\n }\r\n });\r\n }\r\n }\r\n }\r\n componentDidMount() {\r\n //绘制定位点(以当前的中心点位参照=>初始化好后才有ref可以获取中心点)\r\n this.initSearchMap();\r\n }\r\n componentDidUpdate(prevProps, prevState) {\r\n //重新渲染结束\r\n this.initSearchMap();\r\n }\r\n componentWillReceiveProps(nextProps) {\r\n let t = this;\r\n this.isClickMap = false;\r\n if (t.state.graphicType !== nextProps.graphicType && !!this.map) {\r\n this.map.clearAll();\r\n t.mapLoaded = false;\r\n t.isinit = true;\r\n }\r\n if (nextProps.editParam) {\r\n t.mapLoaded = false;\r\n }\r\n t.isDrawStatus = nextProps.graphicType !== \"point\" && !nextProps.editParam;\r\n this.setState(\r\n {\r\n modal1Visible: nextProps.modal1Visible,\r\n maxZoom: nextProps.maxZoom,\r\n minZoom: nextProps.minZoom,\r\n wkid: nextProps.wkid,\r\n mapCenter: nextProps.mapCenter || \"\",\r\n mapType: nextProps.mapType || \"bmap\",\r\n mapStyle: nextProps.mapStyle,\r\n mapServer: nextProps.mapServer,\r\n graphicType: nextProps.graphicType || \"point\",\r\n isDraw: nextProps.graphicType !== \"point\" && !nextProps.editParam,\r\n isCloseDraw: !(\r\n nextProps.graphicType !== \"point\" && !nextProps.editParam\r\n ),\r\n editGraphicId: \"\",\r\n },\r\n () => {\r\n t.setState({\r\n isCloseDraw: false,\r\n });\r\n t.initSearchMap();\r\n }\r\n );\r\n setTimeout(() => {\r\n //实现2+次进入时,清理数据\r\n if (nextProps.modal1Visible) {\r\n this.clearList();\r\n this.setState(\r\n {\r\n setZoomLevel: true,\r\n },\r\n () => {\r\n this.setState({\r\n setZoomLevel: false,\r\n });\r\n }\r\n );\r\n if (\r\n !!this.map &&\r\n !!this.state.locationPoint[0] &&\r\n nextProps.mapCenter &&\r\n !!nextProps.mapCenter[0]\r\n ) {\r\n if (this.map.getGraphic(\"locationPoint\")) {\r\n switch (nextProps.mapType) {\r\n case \"bmap\":\r\n this.map\r\n .getGraphic(\"locationPoint\")\r\n .mapLayer.setPosition(\r\n new BMap.Point(\r\n nextProps.mapCenter[0],\r\n nextProps.mapCenter[1]\r\n )\r\n );\r\n break;\r\n case \"amap\":\r\n this.map\r\n .getGraphic(\"locationPoint\")\r\n .mapLayer.setPosition(\r\n new AMap.LngLat(\r\n nextProps.mapCenter[0],\r\n nextProps.mapCenter[1]\r\n )\r\n );\r\n break;\r\n case \"tmap\":\r\n this.map\r\n .getGraphic(\"locationPoint\")\r\n .mapLayer.setLngLat(\r\n new T.LngLat(nextProps.mapCenter[0], nextProps.mapCenter[1])\r\n );\r\n break;\r\n case \"gmap\":\r\n this.map\r\n .getGraphic(\"locationPoint\")\r\n .mapLayer.geometry.setLatitude(nextProps.mapCenter[1]);\r\n this.map\r\n .getGraphic(\"locationPoint\")\r\n .mapLayer.geometry.setLongitude(nextProps.mapCenter[0]);\r\n this.map.state.gis.graphics.refresh();\r\n case \"olMap\":\r\n this.map\r\n .getGraphic(\"locationPoint\")\r\n .mapLayer.setGeometry(new ol.geom.Point(nextProps.mapCenter));\r\n break;\r\n }\r\n }\r\n this.map.setCenter(nextProps.mapCenter);\r\n }\r\n }\r\n }, 100);\r\n }\r\n componentWillUnmount() {\r\n //关闭moveTo定时\r\n let t = this;\r\n if (t.loadExtent) {\r\n clearInterval(t.loadExtent);\r\n }\r\n }\r\n}\r\n\r\nexport default VtxSearchCheckMap;\r\n"],"mappings":"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"}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
@import (reference) '~antd/lib/style/themes/index.less';
|
|
2
|
+
|
|
3
|
+
.vtx-ui-searchmap-searchmodal{
|
|
4
|
+
z-index: 1001;
|
|
5
|
+
.ant-modal{
|
|
6
|
+
width: e('calc(100% - 200px)') !important;
|
|
7
|
+
min-width: 800px;
|
|
8
|
+
height: 70vh;
|
|
9
|
+
.ant-modal-title{
|
|
10
|
+
color: @primary-color;
|
|
11
|
+
}
|
|
12
|
+
.ant-modal-content{
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 100%;
|
|
15
|
+
.ant-modal-body{
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: e('calc(100% - 108px)') !important;
|
|
18
|
+
padding: 0px;
|
|
19
|
+
background-color: @body-background;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.vtx-ui-searchmap-searchmap{
|
|
24
|
+
width: 100%;
|
|
25
|
+
height: 100%;
|
|
26
|
+
padding-top: 48px;
|
|
27
|
+
// padding-bottom: 48px;
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
position: relative;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
.vtx-ui-searchmap-top,.vtx-ui-searchmap-bottom{
|
|
32
|
+
width: 100%;
|
|
33
|
+
height: 48px;
|
|
34
|
+
position: absolute;
|
|
35
|
+
left: 0px;
|
|
36
|
+
padding: 10px 15px;
|
|
37
|
+
button{
|
|
38
|
+
margin-left: 10px;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
.vtx-ui-searchmap-top{
|
|
42
|
+
top: 0px;
|
|
43
|
+
border-bottom: 1px solid @border-color-base;
|
|
44
|
+
.vtx-ui-searchmap-othermodal{
|
|
45
|
+
position: absolute;
|
|
46
|
+
right: 25px;
|
|
47
|
+
line-height: 28px;
|
|
48
|
+
display: inline-block;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
.vtx-ui-searchmap-bottom{
|
|
52
|
+
bottom: 0px;
|
|
53
|
+
border-top: 1px solid @border-color-base;
|
|
54
|
+
text-align: right;
|
|
55
|
+
}
|
|
56
|
+
.vtx-ui-searchmap-content{
|
|
57
|
+
width: 100%;
|
|
58
|
+
height: 100%;
|
|
59
|
+
position: relative;
|
|
60
|
+
padding-left: 25px;
|
|
61
|
+
.vtx-ui-searchmap-show{
|
|
62
|
+
display: inline-block;
|
|
63
|
+
width: 100%;
|
|
64
|
+
height: 100%;
|
|
65
|
+
}
|
|
66
|
+
.vtx-ui-searchmap-hidden{
|
|
67
|
+
display: none;
|
|
68
|
+
}
|
|
69
|
+
.vtx-ui-searchmap-w_l{
|
|
70
|
+
width: 300px !important;
|
|
71
|
+
}
|
|
72
|
+
.vtx-ui-searchmap-content_left{
|
|
73
|
+
width: 25px;
|
|
74
|
+
height: 100%;
|
|
75
|
+
display: inline-block;
|
|
76
|
+
-webkit-transition-duration: 0.3s;
|
|
77
|
+
-o-transition-duration: 0.3s;
|
|
78
|
+
transition-duration: 0.3s;
|
|
79
|
+
transition-property: width;
|
|
80
|
+
vertical-align: top;
|
|
81
|
+
border-right: 1px solid @border-color-base;
|
|
82
|
+
position: absolute;
|
|
83
|
+
top: 0px;
|
|
84
|
+
left: 0px;
|
|
85
|
+
z-index: 10;
|
|
86
|
+
background-color: @body-background;
|
|
87
|
+
.vtx-ui-searchmap-listtitle{
|
|
88
|
+
width: 100%;
|
|
89
|
+
height: 30px;
|
|
90
|
+
line-height: 30px;
|
|
91
|
+
border-bottom: 1px solid @border-color-base;;
|
|
92
|
+
.vtx-ui-searchmap-title{
|
|
93
|
+
width: e('calc(100% - 30px)');
|
|
94
|
+
display: inline-block;
|
|
95
|
+
padding-left: 15px;
|
|
96
|
+
font-size: 15px;
|
|
97
|
+
}
|
|
98
|
+
.vtx-ui-searchmap-btn{
|
|
99
|
+
display: inline-block;
|
|
100
|
+
width: 30px;
|
|
101
|
+
text-align: center;
|
|
102
|
+
color: @primary-color;
|
|
103
|
+
height: 30px;
|
|
104
|
+
line-height: 30px;
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
.vtx-ui-searchmap-lists{
|
|
109
|
+
width: 100%;
|
|
110
|
+
line-height: 35px;
|
|
111
|
+
border-bottom: 1px solid @border-color-base;;
|
|
112
|
+
font-size: 12px;
|
|
113
|
+
overflow: hidden;
|
|
114
|
+
text-overflow: ellipsis;
|
|
115
|
+
white-space: nowrap;
|
|
116
|
+
padding:0px 15px;
|
|
117
|
+
cursor: pointer;
|
|
118
|
+
color: #999;
|
|
119
|
+
&:hover{
|
|
120
|
+
background-color: #ECF6FD;
|
|
121
|
+
color: @primary-color;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
.vtx-ui-searchmap-lists.vtx-ui-searchmap-select{
|
|
125
|
+
background-color: #ECF6FD;
|
|
126
|
+
color: @primary-color;
|
|
127
|
+
}
|
|
128
|
+
.vtx-ui-searchmap-scrollauto{
|
|
129
|
+
height: e('calc(100% - 30px)');
|
|
130
|
+
overflow-y: auto;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
.vtx-ui-searchmap-content_right{
|
|
134
|
+
width: 100%;
|
|
135
|
+
height: 100%;
|
|
136
|
+
display: inline-block;
|
|
137
|
+
-webkit-transition-duration: 0.3s;
|
|
138
|
+
-o-transition-duration: 0.3s;
|
|
139
|
+
transition-duration: 0.3s;
|
|
140
|
+
transition-property: width;
|
|
141
|
+
}
|
|
142
|
+
.vtx-ui-searchmap-btn{
|
|
143
|
+
text-align: center;
|
|
144
|
+
color: @primary-color;
|
|
145
|
+
height: 30px;
|
|
146
|
+
line-height: 30px;
|
|
147
|
+
cursor: pointer;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
.vtx-ui-searchmap-showlabel{
|
|
153
|
+
margin-left: 0;
|
|
154
|
+
width: 100px;
|
|
155
|
+
line-height: 25px;
|
|
156
|
+
text-align: center;
|
|
157
|
+
position: relative;
|
|
158
|
+
left: -38px;
|
|
159
|
+
background-color: #222020;
|
|
160
|
+
opacity: 0.6;
|
|
161
|
+
border-radius: 5px;
|
|
162
|
+
color: #FFF;
|
|
163
|
+
padding: 2px 8px;
|
|
164
|
+
text-overflow: ellipsis;
|
|
165
|
+
white-space: nowrap;
|
|
166
|
+
word-break: normal;
|
|
167
|
+
overflow: hidden;
|
|
168
|
+
}
|
|
169
|
+
.vtx-ui-searchmap-hiddenlabel{
|
|
170
|
+
display: none;
|
|
171
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import (reference) '~antd/lib/style/themes/index.less';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "VtxSearchCheckMap", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _VtxSearchCheckMap["default"];
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "default", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _VtxSearchCheckMap["default"];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
var _VtxSearchCheckMap = _interopRequireDefault(require("./VtxSearchCheckMap"));
|
|
20
|
+
|
|
21
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["VtxSearchCheckMap/index.js"],"sourcesContent":["export {default as VtxSearchCheckMap} from './VtxSearchCheckMap';\r\nexport {default} from './VtxSearchCheckMap';"],"mappings":";;;;;;;;;;;;;;;;;;AAAA"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.iconMapping = void 0;
|
|
7
|
+
var iconMapping = {
|
|
8
|
+
check: 'check',
|
|
9
|
+
close: 'close',
|
|
10
|
+
search: 'search1',
|
|
11
|
+
environment: 'location',
|
|
12
|
+
edit: 'edit',
|
|
13
|
+
sync: 'sync',
|
|
14
|
+
'double-left': 'doubleleft',
|
|
15
|
+
'double-right': 'doubleright'
|
|
16
|
+
};
|
|
17
|
+
exports.iconMapping = iconMapping;
|
|
18
|
+
//# sourceMappingURL=mapping.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mapping.js","names":["iconMapping","check","close","search","environment","edit","sync"],"sources":["VtxSearchCheckMap/mapping.js"],"sourcesContent":["export const iconMapping = {\r\n check: 'check',\r\n close: 'close',\r\n search: 'search1',\r\n environment: 'location',\r\n edit: 'edit',\r\n sync: 'sync',\r\n 'double-left': 'doubleleft',\r\n 'double-right': 'doubleright',\r\n};\r\n"],"mappings":";;;;;;AAAO,IAAMA,WAAW,GAAG;EACvBC,KAAK,EAAE,OADgB;EAEvBC,KAAK,EAAE,OAFgB;EAGvBC,MAAM,EAAE,SAHe;EAIvBC,WAAW,EAAE,UAJU;EAKvBC,IAAI,EAAE,MALiB;EAMvBC,IAAI,EAAE,MANiB;EAOvB,eAAe,YAPQ;EAQvB,gBAAgB;AARO,CAApB"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("antd/lib/button/style/css");
|
|
4
|
+
|
|
5
|
+
require("antd/lib/input/style/css");
|
|
6
|
+
|
|
7
|
+
require("antd/lib/message/style/css");
|
|
8
|
+
|
|
9
|
+
require("antd/lib/icon/style/css");
|
|
10
|
+
|
|
11
|
+
require("antd/lib/checkbox/style/css");
|
|
12
|
+
|
|
13
|
+
require("../../VtxMap/AMap/AMap.css");
|
|
14
|
+
|
|
15
|
+
require("../../VtxMap/BMap/Map.css");
|
|
16
|
+
|
|
17
|
+
require("../../VtxMap/GMap/Map.css");
|
|
18
|
+
|
|
19
|
+
require("../../VtxMap/OMap/Map.css");
|
|
20
|
+
|
|
21
|
+
require("../../VtxMap/TMap/TMap.css");
|
|
22
|
+
|
|
23
|
+
require("../../VtxMap/OlMap/Map.css");
|
|
24
|
+
|
|
25
|
+
require("../../VtxMap/Map.css");
|
|
26
|
+
|
|
27
|
+
var _default = require("../../default");
|
|
28
|
+
|
|
29
|
+
switch (_default.antdMajorVersion) {
|
|
30
|
+
case '4':
|
|
31
|
+
require('../../VtxModal/VtxModal.css');
|
|
32
|
+
|
|
33
|
+
require('../VtxSearchCheckMap.css');
|
|
34
|
+
|
|
35
|
+
break;
|
|
36
|
+
|
|
37
|
+
case '3':
|
|
38
|
+
require('../../VtxModal/VtxModalAntd3.css');
|
|
39
|
+
|
|
40
|
+
require('../VtxSearchCheckMapAntd3.css');
|
|
41
|
+
|
|
42
|
+
break;
|
|
43
|
+
|
|
44
|
+
default:
|
|
45
|
+
break;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"css.js","names":["antdMajorVersion","require"],"sources":["VtxSearchCheckMap/style/index.js"],"sourcesContent":["import 'antd/lib/button/style';\r\nimport 'antd/lib/input/style';\r\nimport 'antd/lib/message/style';\r\nimport 'antd/lib/icon/style';\r\nimport 'antd/lib/checkbox/style';\r\n\r\nimport '../../VtxMap/AMap/AMap.less';\r\nimport '../../VtxMap/BMap/Map.less';\r\nimport '../../VtxMap/GMap/Map.less';\r\nimport '../../VtxMap/OMap/Map.less';\r\nimport '../../VtxMap/TMap/TMap.less';\r\nimport '../../VtxMap/OlMap/Map.less';\r\nimport '../../VtxMap/Map.less';\r\n\r\nimport { antdMajorVersion } from '../../default';\r\nswitch (antdMajorVersion) {\r\n case '4':\r\n require('../../VtxModal/VtxModal.less');\r\n require('../VtxSearchCheckMap.less');\r\n break;\r\n case '3':\r\n require('../../VtxModal/VtxModalAntd3.less');\r\n require('../VtxSearchCheckMapAntd3.less');\r\n break;\r\n default:\r\n break;\r\n}\r\n\r\n"],"mappings":";;AAAA;;AACA;;AACA;;AACA;;AACA;;AAEA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AAEA;;AACA,QAAQA,yBAAR;EACI,KAAK,GAAL;IACIC,OAAO,CAAC,8BAAD,CAAP;;IACAA,OAAO,CAAC,2BAAD,CAAP;;IACA;;EACJ,KAAK,GAAL;IACIA,OAAO,CAAC,mCAAD,CAAP;;IACAA,OAAO,CAAC,gCAAD,CAAP;;IACA;;EACJ;IACI;AAVR"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("antd/lib/button/style");
|
|
4
|
+
|
|
5
|
+
require("antd/lib/input/style");
|
|
6
|
+
|
|
7
|
+
require("antd/lib/message/style");
|
|
8
|
+
|
|
9
|
+
require("antd/lib/icon/style");
|
|
10
|
+
|
|
11
|
+
require("antd/lib/checkbox/style");
|
|
12
|
+
|
|
13
|
+
require("../../VtxMap/AMap/AMap.less");
|
|
14
|
+
|
|
15
|
+
require("../../VtxMap/BMap/Map.less");
|
|
16
|
+
|
|
17
|
+
require("../../VtxMap/GMap/Map.less");
|
|
18
|
+
|
|
19
|
+
require("../../VtxMap/OMap/Map.less");
|
|
20
|
+
|
|
21
|
+
require("../../VtxMap/TMap/TMap.less");
|
|
22
|
+
|
|
23
|
+
require("../../VtxMap/OlMap/Map.less");
|
|
24
|
+
|
|
25
|
+
require("../../VtxMap/Map.less");
|
|
26
|
+
|
|
27
|
+
var _default = require("../../default");
|
|
28
|
+
|
|
29
|
+
switch (_default.antdMajorVersion) {
|
|
30
|
+
case '4':
|
|
31
|
+
require('../../VtxModal/VtxModal.less');
|
|
32
|
+
|
|
33
|
+
require('../VtxSearchCheckMap.less');
|
|
34
|
+
|
|
35
|
+
break;
|
|
36
|
+
|
|
37
|
+
case '3':
|
|
38
|
+
require('../../VtxModal/VtxModalAntd3.less');
|
|
39
|
+
|
|
40
|
+
require('../VtxSearchCheckMapAntd3.less');
|
|
41
|
+
|
|
42
|
+
break;
|
|
43
|
+
|
|
44
|
+
default:
|
|
45
|
+
break;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":["antdMajorVersion","require"],"sources":["VtxSearchCheckMap/style/index.js"],"sourcesContent":["import 'antd/lib/button/style';\r\nimport 'antd/lib/input/style';\r\nimport 'antd/lib/message/style';\r\nimport 'antd/lib/icon/style';\r\nimport 'antd/lib/checkbox/style';\r\n\r\nimport '../../VtxMap/AMap/AMap.less';\r\nimport '../../VtxMap/BMap/Map.less';\r\nimport '../../VtxMap/GMap/Map.less';\r\nimport '../../VtxMap/OMap/Map.less';\r\nimport '../../VtxMap/TMap/TMap.less';\r\nimport '../../VtxMap/OlMap/Map.less';\r\nimport '../../VtxMap/Map.less';\r\n\r\nimport { antdMajorVersion } from '../../default';\r\nswitch (antdMajorVersion) {\r\n case '4':\r\n require('../../VtxModal/VtxModal.less');\r\n require('../VtxSearchCheckMap.less');\r\n break;\r\n case '3':\r\n require('../../VtxModal/VtxModalAntd3.less');\r\n require('../VtxSearchCheckMapAntd3.less');\r\n break;\r\n default:\r\n break;\r\n}\r\n\r\n"],"mappings":";;AAAA;;AACA;;AACA;;AACA;;AACA;;AAEA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AAEA;;AACA,QAAQA,yBAAR;EACI,KAAK,GAAL;IACIC,OAAO,CAAC,8BAAD,CAAP;;IACAA,OAAO,CAAC,2BAAD,CAAP;;IACA;;EACJ,KAAK,GAAL;IACIA,OAAO,CAAC,mCAAD,CAAP;;IACAA,OAAO,CAAC,gCAAD,CAAP;;IACA;;EACJ;IACI;AAVR"}
|
package/lib/index.js
CHANGED
|
@@ -15,6 +15,12 @@ Object.defineProperty(exports, "VtxOptMap", {
|
|
|
15
15
|
return _VtxMap.VtxOptMap;
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
+
Object.defineProperty(exports, "VtxSearchCheckMap", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _VtxSearchCheckMap.VtxSearchCheckMap;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
18
24
|
Object.defineProperty(exports, "VtxSearchMap", {
|
|
19
25
|
enumerable: true,
|
|
20
26
|
get: function get() {
|
|
@@ -31,4 +37,6 @@ Object.defineProperty(exports, "VtxZoomMap", {
|
|
|
31
37
|
var _VtxMap = require("./VtxMap");
|
|
32
38
|
|
|
33
39
|
var _VtxSearchMap = require("./VtxSearchMap");
|
|
40
|
+
|
|
41
|
+
var _VtxSearchCheckMap = require("./VtxSearchCheckMap");
|
|
34
42
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["index.js"],"sourcesContent":["export { VtxMap, VtxOptMap, VtxZoomMap } from \"./VtxMap\";\r\nexport { VtxSearchMap } from \"./VtxSearchMap\";\r\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["index.js"],"sourcesContent":["export { VtxMap, VtxOptMap, VtxZoomMap } from \"./VtxMap\";\r\nexport { VtxSearchMap } from \"./VtxSearchMap\";\r\nexport { VtxSearchCheckMap } from \"./VtxSearchCheckMap\";\r\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA"}
|