Simplifying the map's view configuration

In the previous example, we had to configure the map's view with information about the spatial reference system and coordinate location of the image.

The first thing we needed to know was an identifier for the spatial reference system. This is used to create an OpenLayers Projection (which also needs to know the units):

const projection = new Projection({
  code: 'EPSG:32721',
  units: 'm',
});

The second thing we needed to know about the imagery was its coordinate location. This is used to create a bounding box or extent array:

// metadata from https://s3.us-west-2.amazonaws.com/sentinel-cogs/sentinel-s2-l2a-cogs/21/H/UB/2021/9/S2B_21HUB_20210915_0_L2A/S2B_21HUB_20210915_0_L2A.json
const extent = [300000, 6090260, 409760, 6200020];

With this information, we were finally able to configure the view for the map:

new Map({
  target: 'map-container',
  layers: [layer],
  view: new View({
    projection: projection,
    center: getCenter(extent),
    extent: extent,
    zoom: 1,
  }),
});

GeoTIFF imagery extends regular TIFF imagery with special "geo" tags that provide information about things like the spatial reference system and coordinate location of the imagery. The ol/source/GeoTIFF source in OpenLayers parses this information and can ideally be used to configure a map's view.

The source.getView() method of the GeoTIFF source returns a promise for view properties (like projection, center, extent, and zoom) that resolves when the GeoTIFF metdata has been parsed. The map constructor now accepts a view option that can be a promise for these same properties. So instead of digging through the metadata ourselves to find things like projection and extent, we can provide the map with a promise for view properties from the source.

Update your main.js so that the map constructor uses this new method for getting view properties from the source:

new Map({
  target: 'map-container',
  layers: [layer],
  view: source.getView(),
});

Now you can remove the projection, extent, and related imports (View, Projection, and getCenter) from your main.js file.

You should find the same result as before at http://localhost:5173/ – only this time we had to write less code!

A true color rendering of a Sentinel-2 GeoTIFF
A true color rendering of a Sentinel-2 GeoTIFF

results matching ""

    No results matching ""