summaryrefslogtreecommitdiff
path: root/platform/android/src/style/sources/vector_source.hpp
blob: 16049f5c773f302199634438c9451086e5ef676c (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
#pragma once

#include "source.hpp"
#include <mbgl/style/sources/vector_source.hpp>
#include "../../geojson/feature.hpp"
#include <jni/jni.hpp>

namespace mbgl {
namespace android {

class VectorSource : public Source {
public:

    static constexpr auto Name() { return "com/mapbox/mapboxsdk/style/sources/VectorSource"; };

    static jni::Class<VectorSource> javaClass;

    static void registerNative(jni::JNIEnv&);

    VectorSource(jni::JNIEnv&, jni::String, jni::Object<>);

    VectorSource(jni::JNIEnv&, mbgl::style::Source&, AndroidRendererFrontend&);

    ~VectorSource();

    jni::Array<jni::Object<geojson::Feature>> querySourceFeatures(jni::JNIEnv&, jni::Array<jni::String>,
                                                                  jni::Array<jni::Object<>> jfilter);

    jni::String getURL(jni::JNIEnv&);

private:
    jni::Object<Source> createJavaPeer(jni::JNIEnv&);

}; // class VectorSource

} // namespace android
} // namespace mbgl