#pragma once #include "geometry.hpp" #include namespace mbgl { namespace android { namespace geojson { class GeometryCollection { public: using SuperTag = Geometry; static constexpr auto Name() { return "com/mapbox/geojson/GeometryCollection"; }; static constexpr auto Type() { return "GeometryCollection"; }; static jni::Local> New(jni::JNIEnv&, const mapbox::geometry::geometry_collection&); static mapbox::geometry::geometry_collection convert(jni::JNIEnv&, const jni::Object&); static void registerNative(jni::JNIEnv&); }; } // namespace geojson } // namespace android } // namespace mbgl