From 33465df0002e2c61fe5c39d4aeb7a674ce0147da Mon Sep 17 00:00:00 2001 From: Gali Nelle Date: Wed, 15 Apr 2020 18:15:29 +0300 Subject: Introduce a mean to add render features in layers with no sources This change also uses the support in the LocationIndicator layer, to return a point feature when queried in correspondence of the location indicator. --- .../query_test_no_image/style.json | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 metrics/tests/location_indicator/query_test_no_image/style.json (limited to 'metrics/tests/location_indicator/query_test_no_image/style.json') diff --git a/metrics/tests/location_indicator/query_test_no_image/style.json b/metrics/tests/location_indicator/query_test_no_image/style.json new file mode 100644 index 0000000000..684f5c597c --- /dev/null +++ b/metrics/tests/location_indicator/query_test_no_image/style.json @@ -0,0 +1,65 @@ +{ + "version": 8, + "metadata": { + "test": { + "width": 512, + "height": 256, + "operations": [ + [ + "addImage", + "puck_hat", + "puck_hat.png" + ], + [ + "addImage", + "puck", + "puck.png" + ], + [ + "addImage", + "puck_shadow", + "puck_shadow.png" + ] + ], + "queryGeometry": [ + 256, + 128 + ] + } + }, + "center": [ 139.766707, 35.693055 ], + "zoom": 16, + "pitch" : 60, + "bearing" : 42, + "sources": {}, + "layers": [ + { + "id": "background", + "type": "background", + "paint": { + "background-color": "white" + } + }, + { + "id": "puck123", + "type": "location-indicator", + "layout" : { + "top-image" : "puck_hat", + "shadow-image" : "puck_shadow" + }, + "paint" : { + "bearing" : 45, + "perspective-compensation" : 1, + "image-tilt-displacement" : 0, + "location" : [ 35.693055, 139.766707, 0], + "accuracy-radius": 90.0, + "bearing-image-size" : 0.26, + "top-image-size" : 0.18, + "shadow-image-size" : 0.2, + + "accuracy-radius-color": "rgba(255,0,0,0.2)", + "accuracy-radius-border-color": "rgba(255,0,255,0.6)" + } + } + ] +} -- cgit v1.2.1