{ "name": "panda-amap-link-line", "version": "0.0.1", "description": "链接线图层", "main": "index.js", "scripts": { "build": "cube build ./ --output=../../datavComponent --remote=pandav --smart" }, "keywords": [ "map", "subcoms" ], "dependencies": { "eventemitter3": "3.0.0", "safely-merge": "1.0.1", "lodash": "4.17.11" }, "pandav": { "cn_name": "链接线图层", "icon": "https:///assets.easyv.cloud/thumb/ea6dbbba-f7db-4aca-a7e4-57608896e04a.gif", "level": 1, "protocol": 2, "type": [ "amap-v4_subcoms_line" ], "parent": { "supportTypes": [ "map_amap-v4" ], "supportNames": [] }, "publicHandler": { "show": { "description": "显示组件" }, "hide": { "description": "隐藏组件" } }, "events": {}, "api_data": { "source": [ { "name": "正常", "data": { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "测试线1", "value": 45.18932661, "level": "C", "month": 202005 }, "geometry": { "type": "LineString", "coordinates": [ [ 116.3234, 39.8969 ], [ 116.181, 39.8175 ] ] } }, { "type": "Feature", "properties": { "name": "测试线2", "value": 45.18932661, "level": "C", "month": 202005 }, "geometry": { "type": "LineString", "coordinates": [ [ 116.4181, 39.8028 ], [ 116.3398, 39.7779 ] ] } } ] } } ] }, "apis": { "source": { "description": "数据接口", "handler": "render", "fields": { "name": { "description": "状态名" }, "data": { "description": "线路径坐标,geojson形式" } } } }, "config": { "type": { "name": "链接线图层类型", "type": "select", "default": "link", "options": [ { "label": "链接线", "value": "link" }, { "label": "连接飞线", "value": "pulseLink" } ] }, "statusConfig": { "name": "状态", "type": "array", "fold": false, "default": [ { "name": "正常", "style": { "lineWidth": [ 2, 2 ], "dash": [ 10, 0, 10, 0 ], "colors": { "startColor": "#25CDEA", "endColor": "#12BFBF" }, "smoothSteps": 100, "maxHeightScale": 0, "unit": "px", "speed": 10, "headColor": "#EFBB51", "trailColor": "rgba(128, 128, 128, 0.5)", "flowLength": 100 }, "option": { "zIndex": 120, "opacity": 1, "visible": true, "zooms": [ 3, 20 ], "depth": true } } ], "child": { "type": "object", "name": "状态<%=i+1%>", "child": { "name": { "name": "状态名", "type": "text", "default": "" }, "style": { "name": "图层样式", "type": "group", "children": { "lineWidth": { "name": "线的宽度", "type": "text", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": [ 2, 2 ] }, "dash": { "name": "线的虚线配置信息", "description": "线的虚线配置信息:实线长度, 虚线长度, 实线长度, 虚线长度", "type": "text", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": [ 10, 0, 10, 0 ] }, "colors": { "name": "链接线颜色", "type": "group", "children": { "startColor": { "name": "起始色", "type": "color", "default": "#25CDEA" }, "endColor": { "name": "终止色", "type": "color", "default": "#12BFBF" } } }, "smoothSteps": { "name": "平滑步数", "description": "代表弧线的分隔段数,越大平滑度越好", "type": "number", "default": 100 }, "maxHeightScale": { "name": "弧顶位置", "description": "代表距离起点的哪个位置是弧顶最高点,可以用来模拟抛物线", "type": "number", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": 0 }, "unit": { "name": "图层的样式单位", "description": "px 和 meter,代表此图层的样式单位,像素或者米。", "type": "text", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": "px" }, "speed": { "name": "速度", "description": "每个脉冲点行进的速度(可以针对每个线路进行单独设置速度)。单位:米/秒 或者 像素/秒", "type": "number", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": 10 }, "headColor": { "name": "脉冲点的头部颜色", "type": "color", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": "#EFBB51" }, "trailColor": { "name": "脉冲点的尾部颜色", "type": "color", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": "rgba(128, 128, 128, 0.5)" }, "flowLength": { "name": "脉冲点的长度", "description": "单位跟随 unit 字段变化。如果不希望有脉冲动画,设置此长度为 0 即可", "type": "number", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ], "logicalType": "$or" }, "default": 100 } } }, "option": { "name": "图层参数", "type": "group", "children": { "zIndex": { "name": "图层显示层级", "type": "number", "default": 120 }, "opacity": { "name": "图层整体透明度", "type": "slider", "default": 1, "max": 1, "min": 0, "step": ".05" }, "visible": { "name": "图层是否可见", "type": "boolean", "default": true }, "zooms": { "name": "图层缩放等级范围", "default": [ 3, 20 ], "description": "最小级别, 最大级别", "type": "text" }, "depth": { "name": "图层中的要素是否具有前后遮盖关系", "type": "boolean", "showInPanel": { "conditions": [ [ "type", "$eq", "pulseLink" ] ] }, "default": true } } } } } } } } }