mmaltsev / Heatimage

Overlay heat on static images.

Home Page:https://mmaltsev.github.io/Heatimage/examples/demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Heatimage

A library for overlaying heat on static images.

Draw heat over static images or simply visualize existing datasets.

Demo

Installation

The easiest way to get started is to install it via npm and improt it into your project:

npm install heatimage
import * as Heatimage from 'heatimage'

Or to add a direct link to the library into your html file:

<script src="https://unpkg.com/heatimage@latest/dist/bundle.js"></script>

Usage

Create an img element, give it an id and specify onload method, e.g.:

<img onload="initHeatimage()" src="world_map.png" id="heatimage" />

Then, inside onload method use specified id in order to select an img element, specify options and trigger Heatimage library in your js / ts file or <script> </script> tags in html file:

function initHeatimage() {
  let element = document.querySelector('#heatimage')

  let heatOptions = {
    heatValue: 0.05,
    heatRadius: 15,
    heatBlur: 25,
    colorGradient: 'Visible Spectrum',
    exporting: true,
    edit: true,
    keys: true,
    visibleCanvas: true,
    defaultData: [
      {x: 375, y: 84, value: 0.05},
      {x: 377, y: 84, value: 0.05},
      {x: 379, y: 88, value: 0.05}
    ],
  }

  Heatimage.heatimage(element, heatOptions)
}

Options

heatOptions: { ... }

Name Values Ranges Description
heatValue number ⩾ 0 value of heat point
heatRadius number ⩾ 0 radius of heat point
heatBlur number ⩾ 0 blur level of heat
colorGradient name of the palette coloring scheme of heat
exporting true / false exporting menu at the top-right corner
edit true / false enable / disable drawing
keys true / false enable / disable using keyboard for drawing
displayCanvas true / false display / hide overlay canvas
defaultData array of {x, y, value} objects set default heat data

Results

source image

Contributing

Build the library with npm run build. For a production version with console warnings, execute npm run build:prod_warn. This will fetch all dependencies and then compile the dist files. To see the examples locally you can start a web server with npm run dev and go to localhost:8080 (localhost:8081 if port 8080 is busy).

License

MIT License. Copyright (c) 2017-2019 Maxim Maltsev.

About

Overlay heat on static images.

https://mmaltsev.github.io/Heatimage/examples/demo

License:MIT License


Languages

Language:JavaScript 52.7%Language:TypeScript 45.0%Language:CSS 2.4%