WaterHeatmap/README.md

25 lines
567 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# README
## 调用的库和资源
- Tailwind.css
- RemixIcon
## 数据集说明
数据集通过名为 heatmapData 的变量引入(在 heatmapData.js 中),这是一个数组,每个元素代表了某个时刻的热力图数据集。(目前控制条档位为 12 个,建议测试数组长度为 12之后可以调节
某个时刻的热力图数据,是一个数组,包含若干热力点。
每一个热力点格式如下:
```
{
lng: 116.405285,
lat: 39.904989,
count: 65
}
```
分别表示热力点的经度、纬度和热力强度。