#pragma once #include #include #include #include "../../gson/json_array.hpp" #include "../value.hpp" #include "../../gson/json_element.hpp" #include namespace mbgl { namespace android { class Layer : private mbgl::util::noncopyable { public: static constexpr auto Name() { return "com/mapbox/mapboxsdk/style/layers/Layer"; }; static void registerNative(jni::JNIEnv&); /* * Called when a non-owning peer object is created on the c++ side */ Layer(mbgl::Map&, mbgl::style::Layer&); /* * Called when a owning peer object is created on the c++ side */ Layer(mbgl::Map&, std::unique_ptr); /* * Called when a Java object was created from the jvm side */ Layer(jni::JNIEnv&, std::unique_ptr); virtual ~Layer(); virtual jni::Local> createJavaPeer(jni::JNIEnv&) = 0; /** * Set core layer (ie return ownership after remove) */ void setLayer(std::unique_ptr); void addToMap(mbgl::Map&, mbgl::optional); jni::Local getId(jni::JNIEnv&); jni::Local getSourceId(jni::JNIEnv&); style::Layer& get(); void setLayoutProperty(jni::JNIEnv&, const jni::String&, const jni::Object<>& value); void setPaintProperty(jni::JNIEnv&, const jni::String&, const jni::Object<>& value); // Zoom jni::jfloat getMinZoom(jni::JNIEnv&); jni::jfloat getMaxZoom(jni::JNIEnv&); void setMinZoom(jni::JNIEnv&, jni::jfloat zoom); void setMaxZoom(jni::JNIEnv&, jni::jfloat zoom); /* common properties, but not shared by all */ void setFilter(jni::JNIEnv&, const jni::Array>&); jni::Local> getFilter(jni::JNIEnv&); void setSourceLayer(jni::JNIEnv&, const jni::String&); jni::Local getSourceLayer(jni::JNIEnv&); // Property getters jni::Local> getVisibility(jni::JNIEnv&); protected: // Release the owned view and return it std::unique_ptr releaseCoreLayer(); // Owned layer is set when creating a new layer, before adding it to the map std::unique_ptr ownedLayer; // Raw reference to the layer mbgl::style::Layer& layer; // Map is set when the layer is retrieved or after adding to the map mbgl::Map* map; }; } // namespace android } // namespace mbgl