The problem of finding the smallest enclosing axis-aligned rectangle around a given number of points is trivial. We don't need an optimization model for that.
Things are more interested if we need to cover just k out of n points. So the model needs to select the k points and then form a rectangle around these such that the size of the rectangle (the area) is minimized.
There are algorithms for this (see e.g. [1]). Here, of course, we try to solve this using an optimization model that finds proven, globally optimal solutions.