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