transitive-js
Version:
A tool for generating dynamic stylized transit maps that are easy to understand.
22 lines (18 loc) • 306 B
JavaScript
const STYLES = {}
STYLES.places_icon = {
height: [20],
visibility: ['visible'],
width: [20],
x: [-10],
y: [-10]
}
/**
* Transitive style overrides for transit stops. All this does is sets the
* radius to 6 pixels.
*/
STYLES.stops_merged = {
r() {
return 6
}
}
export default STYLES