// This file is generated. Edit scripts/generate-style-code.js, then run `make style-code`. #pragma once #include #include #include #include #include #include namespace mbgl { namespace style { struct HeatmapRadius : DataDrivenPaintProperty { static float defaultValue() { return 30; } }; struct HeatmapWeight : DataDrivenPaintProperty { static float defaultValue() { return 1; } }; struct HeatmapIntensity : PaintProperty { static float defaultValue() { return 1; } }; struct HeatmapOpacity : PaintProperty { static float defaultValue() { return 1; } }; class HeatmapPaintProperties : public Properties< HeatmapRadius, HeatmapWeight, HeatmapIntensity, HeatmapColor, HeatmapOpacity > {}; } // namespace style } // namespace mbgl