Skip to content

Commit

Permalink
Increase the buffer to 200m to make picking on the mobile even easier
Browse files Browse the repository at this point in the history
  • Loading branch information
RalucaNicola committed Feb 13, 2018
1 parent a829ebd commit 303d192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ts/scene/SceneElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default class SceneElement {
else {
const query = this.trailsLayer.createQuery();
query.geometry = result.mapPoint;
query.distance = 100;
query.distance = 200;
query.units = "meters";
query.spatialRelationship = "intersects";
this.trailsLayer.queryFeatures(query).then((results) => {
Expand Down

0 comments on commit 303d192

Please sign in to comment.