@rz0/static-map

0.1.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i @rz0/static-map

Weekly Downloads

1

Version

0.1.1

License

MIT

Unpacked Size

36.9 kB

Total Files

5

Last publish

Collaborators

  • rz0