}
@Override
public boolean isInside(float checkX, float checkY, float x, float y) {
PVector pos = new PVector(x, y);
return pos.dist(new PVector(checkX, checkY)) < radius; // FIXME must be zoom dependent
}
/**
* Sets the radius of this marker. Used for the displayed ellipse.
*