UNPKG

@here/harp-examples

Version:
71 lines (58 loc) 2.45 kB
/* * Copyright (C) 2019-2021 HERE Europe B.V. * Licensed under Apache 2.0, see full license in LICENSE * SPDX-License-Identifier: Apache-2.0 */ import { MapControls, MapControlsUI } from "@here/harp-map-controls"; import { CopyrightElementHandler, MapView } from "@here/harp-mapview"; import { HereTileProvider, HereWebTileDataSource } from "@here/harp-webtile-datasource"; import { apikey } from "../config"; /** * A simple example using the webtile data source. Tiles are retrieved from * ``` * https://1.aerial.maps.ls.hereapi.com/maptile/2.1/maptile/newest/satellite.day/${level}/${column}/${row}/512/png8?apikey=${apikey} * ``` * * A [[WebTileDataSource]] is created with specified applications' apikey passed * as [[WebTileDataSourceOptions]] * ```typescript * [[include:harp_gl_datasource_satellitetile_1.ts]] * ``` * Then added to the [[MapView]] * ```typescript * [[include:harp_gl_datasource_satellitetile_2.ts]] * ``` */ export namespace SatelliteDataSourceExample { // creates a new MapView for the HTMLCanvasElement of the given id export function initializeMapView(id: string): MapView { const canvas = document.getElementById(id) as HTMLCanvasElement; const map = new MapView({ canvas, theme: "resources/berlin_tilezen_base_globe.json" }); // instantiate the default map controls, allowing the user to pan around freely. const controls = new MapControls(map); // Add an UI. const ui = new MapControlsUI(controls, { zoomLevel: "input", projectionSwitch: true }); canvas.parentElement!.appendChild(ui.domElement); CopyrightElementHandler.install("copyrightNotice", map); // resize the mapView to maximum map.resize(window.innerWidth, window.innerHeight); // react on resize events window.addEventListener("resize", () => { map.resize(window.innerWidth, window.innerHeight); }); return map; } const mapView = initializeMapView("mapCanvas"); // snippet:harp_gl_datasource_satellitetile_1.ts const webTileDataSource = new HereWebTileDataSource({ apikey, tileBaseAddress: HereTileProvider.TILE_AERIAL_SATELLITE }); // end:harp_gl_datasource_satellitetile_1.ts // snippet:harp_gl_datasource_satellitetile_2.ts mapView.addDataSource(webTileDataSource); // end:harp_gl_datasource_satellitetile_2.ts }