@watergis/maplibre-gl-sky

0.0.7 • Public • Published

@watergis/maplibre-gl-sky

This repository is to add sky color to maplibre-gl-js smartly

Installation

npm i -D @watergis/maplibre-gl-sky

Usage

  • Basic usage

This way, it will fetch the sun calc time from map center and try to get the right color palette for sky.

import maplibregl, { Map } from 'maplibre-gl';
import { SkyControl } from '@watergis/maplibre-gl-sky';

const map = new Map();

const sky = new SkyControl();
sky.addTo(map);
  • add specific sky color
const sky = new SkyControl();
sky.addTo(map, {
	timeType: 'sunset'
});
  • add specific date
const sky = new SkyControl();
sky.addTo(map, {
	date: new Date()
});
  • Customise sky colors
import { defaultSkyOptions, SkyControl } from '@watergis/maplibre-gl-sky';

const newOptions = defaultSkyOptions;
// edit your options for `newOptions`

const sky = new SkyControl(newOptions);
sky.addTo(map);

License

MIT License

Package Sidebar

Install

npm i @watergis/maplibre-gl-sky

Weekly Downloads

39

Version

0.0.7

License

MIT

Unpacked Size

168 kB

Total Files

23

Last publish

Collaborators

  • j_igarashi