Contents

region

The area the map is displaying.

Declaration

get region(): CoordinateRegion;
set region(region: CoordinateRegion);

Discussion

This is the area currently displayed by the map, defined with a CoordinateRegion:

const center = new mapkit.Coordinate(48.8468, 2.3364),
    span = new mapkit.CoordinateSpan(0.016, 0.016),
    region = new mapkit.CoordinateRegion(center, span);

See Also

Manipulating the visible portion of the map