From 037751599bb1d9e73fa514ab8fd73a8ff9512d56 Mon Sep 17 00:00:00 2001 From: liweina Date: Wed, 29 Jul 2020 20:34:06 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E9=A3=9E=E7=BA=BF?= =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E8=AF=B4=E6=98=8E=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/chart-geo.md | 92 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/docs/chart-geo.md b/docs/chart-geo.md index 875f8c8..32233d0 100644 --- a/docs/chart-geo.md +++ b/docs/chart-geo.md @@ -456,6 +456,88 @@ module.exports = { } +## 地图 + 飞线效果图 + +> 飞线图可以在地图上展现运动轨迹,可以用于展示不同地点之间的关系 + + + + + ## 地图下钻 @@ -735,7 +817,7 @@ module.exports = { | 配置项 | 简介 | 类型 | 用法 | | --- | --- | --- | --- | -| mode | geo地图支持不同的模式 | String | 默认为 `map`,可选 `scatter`、`effectScatter`、`heatmap` | +| mode | geo地图支持不同的模式 | String | 默认为 `map`,可选 `scatter`、`effectScatter`、`heatmap`、`lines`| | mapName | 地图名称 | String | 默认为 `china`,中国地图可选 `china-cities`、`china-contour`、`province/beijing`,可传入自定义地图名称 | | mapUrlPrefix | 地图链接前缀 | String | 默认为 `https://unpkg.com/echarts@4.1.0/map/json/`,可传入自定义地址 | | visualMapVisible | 视觉映射开关 | Boolean | 默认为 `false`,可选 `true` | @@ -746,6 +828,14 @@ module.exports = { | roam | 是否开启鼠标缩放和平移漫游 | [Boolean, String] | 默认为 `false` 可以设置成 `scale` 或者 `move`。设置成 `true` 为都开启 | | zoom | 当前视角的缩放比例 | Number | 默认为 `1` | | symbolSize | 散点图标记的大小 | number, Array, Function | 参见[文档](https://echarts.baidu.com/option.html#series-scatter.symbolSize) | +| lineStyle | 线样式配置 | Object | 参见[文档](https://echarts.apache.org/zh/option.html#series-lines.lineStyle) | +| lineEffectVisible | 线特效开关 | Boolean | 默认为 `false`,可选 `true` | +| lineEffect | 线特效配置 | Object | 参见[文档](https://echarts.apache.org/zh/option.html#series-lines.effect) | +| overlayEffectVisible | overlay 特效开关 | Boolean | 默认为 `true`,可选 `false` | +| overlayEffect | overlay 特效配置 | Object | 参见[文档](https://echarts.apache.org/zh/option.html#series-lines.effect) | +| effectScatterLabelVisible | effectScatter 图形文本标签开关 | Boolean | 默认为 `false`,可选 `true` | +| effectScatterLabel | effectScatter 图形文本标签 | Object | 参见[文档](https://echarts.apache.org/zh/option.html#series-lines.label) | + > Tip1: mode 为非 map 时,使用 `coordinateSystem` 配置地理坐标系为 `geo` 生成地图