UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

78 lines (73 loc) 2.73 kB
// Copyright (c) 2018 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import React, {Component} from 'react'; import PropTypes from 'prop-types'; import Base from 'components/common/icons/base'; export default class HexagonLayerIcon extends Component { static propTypes = { /** Set the height of the icon, ex. '16px' */ height: PropTypes.string, colors: PropTypes.arrayOf(PropTypes.string) }; static defaultProps = { height: '16px', predefinedClassName: 'hexagon-layer-icon', totalColor: 6 }; render() { return ( <Base {...this.props}> <polygon className="cr1" points="23.9,10 30.9,14 30.9,22.1 23.9,26.2 16.8,22.1 16.8,14 " style={{opacity: 0.6}} /> <polygon className="cr2" points="23.9,37.8 30.9,41.9 30.9,50 23.9,54 16.8,50 16.8,41.9 " style={{opacity: 0.4}} /> <polygon className="cr6" points="40.1,10 47.2,14 47.2,22.1 40.1,26.2 33.1,22.1 33.1,14 " /> <polygon className="cr3" points="40.1,37.8 47.2,41.9 47.2,50 40.1,54 33.1,50 33.1,41.9 " style={{opacity: 0.8}} /> <polygon className="cr1" points="15.8,23.9 22.8,27.9 22.8,36.1 15.8,40.1 8.7,36.1 8.7,27.9 " /> <polygon className="cr4" points="32,23.9 39,27.9 39,36.1 32,40.1 25,36.1 25,27.9 " style={{opacity: 0.8}} /> <polygon className="cr5" points="48.2,23.9 55.3,27.9 55.3,36.1 48.2,40.1 41.2,36.1 41.2,27.9 " style={{opacity: 0.4}} /> </Base> ); } };