diff --git a/OsmAnd-java/src/net/osmand/data/Amenity.java b/OsmAnd-java/src/net/osmand/data/Amenity.java index b6072f101e..fef60b5866 100644 --- a/OsmAnd-java/src/net/osmand/data/Amenity.java +++ b/OsmAnd-java/src/net/osmand/data/Amenity.java @@ -36,6 +36,9 @@ public class Amenity extends MapObject { private String openingHours; private Map additionalInfo; private AmenityRoutePoint routePoint; // for search on path + // context menu geometry; + private TIntArrayList y; + private TIntArrayList x; public Amenity() { } @@ -290,4 +293,18 @@ public class Amenity extends MapObject { } return res; } + + public TIntArrayList getY() { + if(y == null) { + y = new TIntArrayList(); + } + return y; + } + + public TIntArrayList getX() { + if (x == null) { + x = new TIntArrayList(); + } + return x; + } }