summaryrefslogtreecommitdiff
path: root/platform/android/src/geojson/feature.hpp
blob: ab59d783e560b43ed1d044d12a8c1c80a4a6abf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once

#include <mbgl/util/feature.hpp>
#include <mbgl/util/geometry.hpp>
#include <mbgl/util/noncopyable.hpp>

#include <jni/jni.hpp>

#include "geometry.hpp"
#include "../gson/json_object.hpp"

namespace mbgl {
namespace android {
namespace geojson {

class Feature : private mbgl::util::noncopyable {
public:

    static constexpr auto Name() { return "com/mapbox/geojson/Feature"; };

    static jni::Object<Feature> fromGeometry(jni::JNIEnv&, jni::Object<Geometry>, jni::Object<gson::JsonObject>, jni::String);

    static mbgl::Feature convert(jni::JNIEnv&, jni::Object<Feature>);

    static jni::Object<Geometry> geometry(jni::JNIEnv&, jni::Object<Feature>);

    static jni::String id(jni::JNIEnv&, jni::Object<Feature>);

    static jni::Object<gson::JsonObject> properties(jni::JNIEnv&, jni::Object<Feature>);

    static jni::Class<Feature> javaClass;

    static void registerNative(jni::JNIEnv&);

};

} // namespace geojson
} // namespace android
} // namespace mbgl