How to use the OGC WMTS service in your map with OpenLayers
This tutorial shows how to add an OGC WMTS from MapTiler to your web map using OpenLayers. The easiest way to add a WMTS to a map is to get the configuration information directly from the GetCapabilities response.
-
Copy the following code, paste it into your favorite text editor, and save it as a
.html
file.
Check out the step-by-step tutorial How to use OpenLayers
-
Replace YOUR_MAPTILER_API_KEY_HERE with your actual MapTiler API key.
-
The next is up to you. You can center your map wherever you desire (modifying the
starting position
) and set an appropriate zoom level (modifying thestarting zoom
) to match your users’ needs. Additionally, you can change the map’s look (by updating thesource URL
); choose from a range of visually appealing map styles from our extensive MapTiler standard maps, or create your own to truly differentiate your application.
-
Create the WMTS capabilities parser.
-
Get the WMTS Capabilities information and read it with the parser.
-
Change the
source
to use the WMTS
-
Import the new modules needed to add the new functionality.
import Map from 'ol/Map.js'; import View from 'ol/View.js'; import TileLayer from 'ol/layer/Tile.js'; import WMTS, {optionsFromCapabilities} from 'ol/source/WMTS.js'; import Attribution from 'ol/control/Attribution.js'; import WMTSCapabilities from 'ol/format/WMTSCapabilities.js'; import { defaults as defaultControls } from 'ol/control/defaults.js'; import { fromLonLat } from 'ol/proj.js';
-
Create the WMTS capabilities parser.
-
Get the WMTS Capabilities information and read it with the parser.
-
Change the
source
to use the WMTS
Learn more
If you want to learn more about OGC WMTS check out the WMTS article.