Location pragueLocation = new Location(50.08f, 14.42f);
for (Marker marker : map.getMarkers()) {
if ("DEU".equals(marker.getId())) {
AbstractShapeMarker shapeMarker = (AbstractShapeMarker) marker;
assertTrue(shapeMarker.isInsideByLocation(berlinLocation));
assertFalse(shapeMarker.isInsideByLocation(pragueLocation));
}
}
}