Chart-geo

111 阅读1分钟

地图数据

github.com/markmarkoh/…

GEO map 相关 demo

github.com/sgratzl/cha…

Geo Map Data

github.com/lyhmyd1211/…

json 数据实时显示

geojson.io/#map=3.2/29…

轻量级地图组件

leafletjs.com/plugins.htm…

ol 地图库

www.npmjs.com/package/ol

doc of Ol

openlayers.org/workshop/en…

openlayer example

openlayers.org/en/latest/e…

碰到的问题 :报错

["size" is not a registered scale]

解决方法:需要注册 SizeScale 到 chart

参考: stackoverflow.com/questions/7…

import {
  BubbleMapController,
  ColorScale,
  GeoFeature,
  ProjectionScale,
  SizeScale,
} from 'chartjs-chart-geo';

Chart.register(
  BubbleMapController,
  GeoFeature,
  ColorScale,
  SizeScale,
  ProjectionScale,
);