react-planner-viewer
Version:
react-planner-viewer is a React Component for view plans builded with react-planner in 2D mode
19 lines (16 loc) • 335 B
JavaScript
import {SELECT_AREA, SHOW_HEAT_MAP_AREAS} from '../constants';
export function selectArea(layerID, areaID) {
return {
type: SELECT_AREA,
layerID,
areaID,
}
}
export function showHeatMapAreas(layerID, heatMapValues, colors) {
return {
type: SHOW_HEAT_MAP_AREAS,
layerID,
heatMapValues,
colors,
}
}