mirror of
https://github.com/visgl/react-map-gl.git
synced 2025-12-08 20:16:02 +00:00
* StaticMap and InteractiveMap separates event handling concerns from map display concerns.
7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
import {rgb} from 'd3-color';
|
|
|
|
export default function alphaify(color, a) {
|
|
const c = rgb(color);
|
|
return `rgba(${[c.r, c.g, c.b]}, ${a})`;
|
|
}
|