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