kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
17 lines (16 loc) • 451 B
TypeScript
import PropTypes from 'prop-types';
import { Component } from 'react';
declare class WMSLayerIcon extends Component {
static propTypes: {
height: PropTypes.Requireable<string>;
colors: PropTypes.Requireable<string[]>;
};
static defaultProps: {
height: string;
predefinedClassName: string;
totalColor: number;
viewBox: string;
};
render(): JSX.Element;
}
export default WMSLayerIcon;