UNPKG

react-ol-choropleth

Version:

A React plugin for creating choropleth maps using OpenLayers

13 lines (12 loc) 643 B
/** * React OpenLayers Choropleth Map * A React plugin for creating choropleth maps using OpenLayers * @module react-ol-choropleth */ export { default as ChoroplethMap } from './components/ChoroplethMap'; export { default as Legend } from './components/Legend'; export { default as useColorScale } from './hooks/useColorScale'; export type { ChoroplethMapProps, ColorScale, ColorScaleType, ColorScaleOptions, LegendPosition, OverlayOptions, GeoJSONFeatureCollection, GeoJSONFeature } from './types/map'; export type { FeatureLike } from 'ol/Feature'; export type { Style } from 'ol/style'; export type { StyleLike } from 'ol/style/Style';