0.1.1 • Published 5 years ago

@rz0/static-map v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

static-map

Render map tiles in a canvas, given a slippy map tile URL.

Demo

The demo renders 512x512px of OpenStreetMap.

Install

$ npm install @rz0/static-map

Usage

var canvas = document.createElement('canvas');
document.body.appendChild(canvas)
canvas.width = 512;
canvas.height = 512;

var url = 'https://example.com/{z}/{x}/{y}.png';
var lon = 7.438639;
var lat = 46.951083;
var zoom = 15;
var staticMap = StaticMap(url);
staticMap.getMap(canvas, lon, lat, zoom);

See also