From b2c7becf19533ee186fab85ad1ce10aabfcb55ff Mon Sep 17 00:00:00 2001 From: Vladimir Agafonkin Date: Fri, 8 Dec 2017 22:28:03 +0200 Subject: [core] add heatmap layer --- platform/android/src/style/layers/layers.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'platform/android/src/style/layers/layers.cpp') diff --git a/platform/android/src/style/layers/layers.cpp b/platform/android/src/style/layers/layers.cpp index 5d1d1bbcbf..acd851b0a6 100644 --- a/platform/android/src/style/layers/layers.cpp +++ b/platform/android/src/style/layers/layers.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -17,6 +18,7 @@ #include "fill_extrusion_layer.hpp" #include "fill_layer.hpp" #include "hillshade_layer.hpp" +#include "heatmap_layer.hpp" #include "line_layer.hpp" #include "raster_layer.hpp" #include "symbol_layer.hpp" @@ -33,6 +35,7 @@ template <> struct PeerType { using Type = android::CircleLa template <> struct PeerType { using Type = android::FillExtrusionLayer; }; template <> struct PeerType { using Type = android::FillLayer; }; template <> struct PeerType { using Type = android::HillshadeLayer; }; +template <> struct PeerType { using Type = android::HeatmapLayer; }; template <> struct PeerType { using Type = android::LineLayer; }; template <> struct PeerType { using Type = android::RasterLayer; }; template <> struct PeerType { using Type = android::SymbolLayer; }; @@ -96,6 +99,7 @@ void registerNativeLayers(jni::JNIEnv& env) { FillExtrusionLayer::registerNative(env); FillLayer::registerNative(env); HillshadeLayer::registerNative(env); + HeatmapLayer::registerNative(env); LineLayer::registerNative(env); RasterLayer::registerNative(env); SymbolLayer::registerNative(env); -- cgit v1.2.1