Ocean bathymetry 3D
Show a detailed 3D map of the ocean’s seafloor and its bathymetry.
Increase the authenticity of your web mapping applications and data by incorporating ocean relief into your maps. This will provide a greater sense of realism and depth to your visuals.
NPM module setup
npm install --save @maptiler/sdk
import { Map, config } from '@maptiler/sdk';
import '@maptiler/sdk/dist/maptiler-sdk.css';
config.apiKey = 'YOUR_MAPTILER_API_KEY_HERE';
const map = new Map({
container: 'map', // container id
style: 'ocean',
center: [126.419, 10.2021], // starting position [lng, lat]
zoom: 9.12, // starting zoom
pitch: 77,
bearing: -20,
maxPitch: 85,
});
map.on('load', function() {
map.addSource("bathymetry", {
type: 'raster-dem',
url: 'https://api.maptiler.com/tiles/ocean-rgb/tiles.json',
});
map.setTerrain({ source: 'bathymetry', exaggeration: 1.5 });
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title>Ocean bathymetry 3D | NPM example</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="map"></div>
<script type="module" src="./main.js"></script>
</body>
</html>
body {margin: 0; padding: 0;}
#map {position: absolute; top: 0; bottom: 0; width: 100%;}