mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-16 03:14:45 +08:00
Unifies market analysis, data analysis, and consulting reporting into a comprehensive consulting-analysis skill, enabling a two-phase workflow from analysis framework design to professional report generation. Introduces a DuckDB-based data analysis utility for Excel/CSV files and a chart-visualization skill with a flexible JS interface and extensive chart type documentation. Removes the legacy market analysis skill to streamline report generation and improve extensibility for consulting and data-driven workflows.
23 lines
991 B
Markdown
23 lines
991 B
Markdown
# generate_pin_map — 点标地图(中国)
|
||
|
||
## 功能概述
|
||
在中国地图上以标记展示多个 POI 位置,可配合弹窗显示图片或说明,适用于门店分布、资产布点等。
|
||
|
||
## 输入字段
|
||
### 必填
|
||
- `title`: string,必填且≤16 字,概述点位集合。
|
||
- `data`: string[],必填,包含中国境内的 POI 名称列表。
|
||
|
||
### 可选
|
||
- `markerPopup.type`: string,固定为 `image`。
|
||
- `markerPopup.width`: number,默认 `40`,图片宽度。
|
||
- `markerPopup.height`: number,默认 `40`,图片高度。
|
||
- `markerPopup.borderRadius`: number,默认 `8`,图片圆角。
|
||
- `width`: number,默认 `1600`。
|
||
- `height`: number,默认 `1000`。
|
||
|
||
## 使用建议
|
||
POI 名称需包含足够的地理限定(城市+地标);根据业务可在名称中附带属性,如“上海徐汇门店 A”;地图依赖高德数据,仅支持中国。
|
||
|
||
## 返回结果
|
||
- 返回点标地图 URL,并在 `_meta.spec` 中保存点位与弹窗配置。 |