Returns true if this rectangle contains the given point.
point
bool contains(Mappoint point) { return left <= point.x && right >= point.x && top <= point.y && bottom >= point.y; }