#pragma once #include #include "../java/util.hpp" #include namespace mbgl { namespace android { namespace geojson { class Geometry { public: static constexpr auto Name() { return "com/mapbox/geojson/Geometry"; }; static jni::Local> New(jni::JNIEnv&, mbgl::Geometry); static mbgl::Geometry convert(jni::JNIEnv&, const jni::Object&); static std::string getType(jni::JNIEnv&, const jni::Object&); static void registerNative(jni::JNIEnv&); }; } // namespace geojson } // namespace android } // namespace mbgl