Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/newsappsio/spam
A D3 library to create maps with Canvas
https://github.com/newsappsio/spam
Last synced: 12 days ago
JSON representation
A D3 library to create maps with Canvas
- Host: GitHub
- URL: https://github.com/newsappsio/spam
- Owner: newsappsio
- License: mit
- Created: 2015-06-11T21:01:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-09-29T23:46:35.000Z (over 2 years ago)
- Last Synced: 2024-11-30T16:11:41.407Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 6.09 MB
- Stars: 102
- Watchers: 8
- Forks: 9
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-d3 - spam - Create maps with D3 and Canvas, easily (Maps)
- awesome-d3 - spam - Create maps with D3 and Canvas, easily (Maps)
- awesome-d3 - spam - Create maps with D3 and Canvas, easily (Maps)
README
# ![spam](https://cloud.githubusercontent.com/assets/1236790/14952933/3679edc8-1065-11e6-920a-207f8443f141.png)
Spam is a small library to create modern [Canvas](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API) maps with [D3](https://github.com/mbostock/d3). It makes it easy to create static or zoomable maps with automatic projection and retina resolution.
Custom projections, click/hover events,`d3.geo` path generators and multiple map features are supported.
Check the [API docs](https://github.com/newsappsio/spam/wiki/API) or continue reading for [examples](#examples).
## Introduction
When using Spam you are still in charge of painting everything. However the library creates the canvas boilerplate and tries to handle as much as possible without putting constraints on the user.
In order to improve performance, Spam uses two painting phases. The 'static' layer is created once (for every zoom level) and should contain the majority of operations. After these operations complete, the canvas is saved into a picture.
Now every time the canvas needs a repaint (e.g. for hover effects), Spam enters the 'dynamic' painting phase. Here we provide the option to draw dynamic content, while painting the 'static' image in the background.
In order to get the most out of Spam, we encourage you to think about which parts of your map are static and dynamic beforehand and then use the appropriate callbacks. The more code runs in the 'static' functions, the faster Spam will become.
## Getting started
Spam depends on [D3](https://github.com/mbostock/d3) and [TopoJSON](https://github.com/mbostock/topojson) and it's available on npm and with a normal script tag.
If you use NPM, you can do `npm install spamjs` and include it in your project:
```js
import Spam from "spamjs";
```Otherwise, [download the latest release](https://github.com/newsappsio/spam/releases/download/v1.1.0/spam.zip) and add a script tag in your site (don't forget to include D3 and TopoJSON).
```html
```
Here's the most basic map you can do:
```js
d3.json("map.json").then(d => {
topojson.presimplify(d);const map = new Spam.StaticCanvasMap({
element: "body",
data: [
{
features: topojson.feature(d, d.objects["map"]),
static: {
paintfeature: parameters => {
parameters.context.stroke();
}
}
}
]
});map.init();
});
```And that's it! A simple, static map in just a few lines of code! It will be automagically projected and centered in your container, nothing else needed.
## Examples
The best way to start making maps with Spam is reading the examples. You can use the same structure in your maps and fork them with your own TopoJSON.
- [Basic static map](http://bl.ocks.org/martgnz/c48aa019de720fcd86030d3b07990d8d)
- [Basic zoomable map](http://bl.ocks.org/martgnz/fa8187c716c8a6d788eab7d51095b419)
- [Static map with labels](http://bl.ocks.org/martgnz/e5c0387a5bb675b061a2c0a9f573f86a)
- [Static data visualization](http://bl.ocks.org/martgnz/9023a67f080cca8b31ef5d6b1dcf4637)
- [Custom projection](http://bl.ocks.org/martgnz/d8bc3d6c29e712e3255f095671a51967)
- [Canvas globe](http://bl.ocks.org/martgnz/c1a5addfb6c2ec914f2d0bc9b3112b71)
- [Static choropleth](http://bl.ocks.org/martgnz/56664c7ea8efef56f93ca948ef855d06)
- [Zoomable choropleth](http://bl.ocks.org/martgnz/a61c2da0e45a108c857e)## API
Check the [API docs](https://github.com/newsappsio/spam/wiki/API) on the wiki for more information.
## License
MIT © Lukas Appelhans, Martín González.