Display a satellite map

Display a satellite map in your web mapping application. Our built-in styles (streets, satellite, hybrid, outdoor, winter, dark, etc.) are designed to make it easier for you to create beautiful maps. No need for extra coding or worrying about outdated versions. Check out the available list of built-in styles.

MapTiler’s satellite map provides up-to-date satellite imagery for the whole world, high resolution detailed aerial imagery for many countries.

NPM module setup


npm install --save @maptiler/sdk
import { Map, MapStyle, 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: MapStyle.SATELLITE, 
  center: [17.100917, 48.142691], // starting position [lng, lat]
  zoom: 15.71// starting zoom
});
Built-in map styles

Built-in map styles

Tutorials

Easily create beautiful maps using reliable built-in styles.

Show raster image on the map

Raster layer

Tutorials

Add a raster image overlay to the map.

Add a raster tile source

Add a raster tile source

Examples

Add a third-party raster source to the map.

Add hillshading

Add hillshading

Examples

Add raster hillshading effect to a MapTiler map.

Was this helpful?