public class MapReadResult
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
boolean |
isWater
True if the read area is completely covered by water, false otherwise.
|
java.util.List<PointOfInterest> |
pointOfInterests
The read POIs.
|
java.util.List<Way> |
ways
The read ways.
|
| Constructor and Description |
|---|
MapReadResult() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(MapReadResult other,
boolean deduplicate)
Adds other MapReadResult by combining pois and ways.
|
void |
add(PoiWayBundle poiWayBundle) |
public boolean isWater
public java.util.List<PointOfInterest> pointOfInterests
public java.util.List<Way> ways
public void add(PoiWayBundle poiWayBundle)
public void add(MapReadResult other, boolean deduplicate)
other - the MapReadResult to add to this.deduplicate - true if check for duplicates is required.