From 44db1e0548db1807ce91efe7d77e531657a160c5 Mon Sep 17 00:00:00 2001 From: tobrun Date: Thu, 20 Dec 2018 19:34:55 +0100 Subject: [android] - expose query feature extensions --- .../mapboxsdk/style/sources/GeoJsonSource.java | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) (limited to 'platform/android/MapboxGLAndroidSDK/src') diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/sources/GeoJsonSource.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/sources/GeoJsonSource.java index c59cfeaf0b..ac2b644173 100644 --- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/sources/GeoJsonSource.java +++ b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/style/sources/GeoJsonSource.java @@ -285,6 +285,54 @@ public class GeoJsonSource extends Source { return features != null ? Arrays.asList(features) : new ArrayList(); } + /** + * Returns the children of a cluster (on the next zoom level) given its id (cluster_id value from feature properties). + *

+ * Requires configuring this source as a cluster by calling {@link GeoJsonOptions#withCluster(boolean)}. + *

+ * + * @param cluster cluster from which to retrieve children from + * @return a list of features for the underlying children + */ + @NonNull + public FeatureCollection getClusterChildren(@NonNull Feature cluster) { + checkThread(); + return FeatureCollection.fromFeatures(nativeGetClusterChildren(cluster)); + } + + /** + * Returns all the points of a cluster (given its cluster_id), with pagination support: limit is the number of points + * to return (set to Infinity for all points), and offset is the amount of points to skip (for pagination). + *

+ * Requires configuring this source as a cluster by calling {@link GeoJsonOptions#withCluster(boolean)}. + *

+ * + * @param cluster cluster from which to retrieve leaves from + * @param limit limit is the number of points to return + * @param offset offset is the amount of points to skip (for pagination) + * @return a list of features for the underlying leaves + */ + @NonNull + public FeatureCollection getClusterLeaves(@NonNull Feature cluster, long limit, long offset) { + checkThread(); + return FeatureCollection.fromFeatures(nativeGetClusterLeaves(cluster, limit, offset)); + } + + /** + * Returns the zoom on which the cluster expands into several children (useful for "click to zoom" feature) + * given the cluster's cluster_id (cluster_id value from feature properties). + *

+ * Requires configuring this source as a cluster by calling {@link GeoJsonOptions#withCluster(boolean)}. + *

+ * + * @param cluster cluster from which to retrieve the expansion zoom from + * @return the zoom on which the cluster expands into several children + */ + public double getClusterExpansionZoom(@NonNull Feature cluster) { + checkThread(); + return nativeGetClusterExpansionZoom(cluster); + } + @Keep protected native void initialize(String layerId, Object options); @@ -311,6 +359,15 @@ public class GeoJsonSource extends Source { @Keep private native Feature[] querySourceFeatures(Object[] filter); + @Keep + private native Feature[] nativeGetClusterChildren(Feature feature); + + @Keep + private native Feature[] nativeGetClusterLeaves(Feature feature, long limit, long offset); + + @Keep + private native double nativeGetClusterExpansionZoom(Feature feature); + @Override @Keep protected native void finalize() throws Throwable; -- cgit v1.2.1