mirror of
https://github.com/apache/superset.git
synced 2026-04-24 10:35:01 +00:00
* migrate MapBox * migrate bignumber * migrate timeseries table * migrate EventFlow * add default null * fix linting * use shortid instead of passing containerId
126 lines
3.5 KiB
JavaScript
126 lines
3.5 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import MapGL from 'react-map-gl';
|
|
import Immutable from 'immutable';
|
|
import ViewportMercator from 'viewport-mercator-project';
|
|
import ScatterPlotGlowOverlay from './ScatterPlotGlowOverlay';
|
|
import './MapBox.css';
|
|
|
|
const NOOP = () => {};
|
|
export const DEFAULT_MAX_ZOOM = 16;
|
|
export const DEFAULT_POINT_RADIUS = 60;
|
|
|
|
const propTypes = {
|
|
width: PropTypes.number,
|
|
height: PropTypes.number,
|
|
aggregatorName: PropTypes.string,
|
|
clusterer: PropTypes.object,
|
|
globalOpacity: PropTypes.number,
|
|
mapStyle: PropTypes.string,
|
|
mapboxApiKey: PropTypes.string,
|
|
onViewportChange: PropTypes.func,
|
|
pointRadius: PropTypes.number,
|
|
pointRadiusUnit: PropTypes.string,
|
|
renderWhileDragging: PropTypes.bool,
|
|
rgb: PropTypes.array,
|
|
bounds: PropTypes.array,
|
|
};
|
|
|
|
const defaultProps = {
|
|
globalOpacity: 1,
|
|
onViewportChange: NOOP,
|
|
pointRadius: DEFAULT_POINT_RADIUS,
|
|
pointRadiusUnit: 'Pixels',
|
|
};
|
|
|
|
class MapBox extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
const { width, height, bounds } = this.props;
|
|
// Get a viewport that fits the given bounds, which all marks to be clustered.
|
|
// Derive lat, lon and zoom from this viewport. This is only done on initial
|
|
// render as the bounds don't update as we pan/zoom in the current design.
|
|
const mercator = new ViewportMercator({
|
|
width,
|
|
height,
|
|
}).fitBounds(bounds);
|
|
const { latitude, longitude, zoom } = mercator;
|
|
|
|
this.state = {
|
|
viewport: {
|
|
longitude,
|
|
latitude,
|
|
zoom,
|
|
},
|
|
};
|
|
this.onViewportChange = this.onViewportChange.bind(this);
|
|
}
|
|
|
|
onViewportChange(viewport) {
|
|
this.setState({ viewport });
|
|
this.props.onViewportChange(viewport);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
width,
|
|
height,
|
|
aggregatorName,
|
|
globalOpacity,
|
|
mapStyle,
|
|
mapboxApiKey,
|
|
pointRadius,
|
|
pointRadiusUnit,
|
|
renderWhileDragging,
|
|
rgb,
|
|
hasCustomMetric,
|
|
bounds,
|
|
} = this.props;
|
|
const { viewport } = this.state;
|
|
const isDragging = viewport.isDragging === undefined ? false :
|
|
viewport.isDragging;
|
|
|
|
// Compute the clusters based on the original bounds and current zoom level. Note when zoom/pan
|
|
// to an area outside of the original bounds, no additional queries are made to the backend to
|
|
// retrieve additional data.
|
|
const bbox = [bounds[0][0], bounds[0][1], bounds[1][0], bounds[1][1]];
|
|
const clusters = this.props.clusterer.getClusters(bbox, Math.round(viewport.zoom));
|
|
|
|
return (
|
|
<MapGL
|
|
{...viewport}
|
|
mapStyle={mapStyle}
|
|
width={width}
|
|
height={height}
|
|
mapboxApiAccessToken={mapboxApiKey}
|
|
onViewportChange={this.onViewportChange}
|
|
>
|
|
<ScatterPlotGlowOverlay
|
|
{...viewport}
|
|
isDragging={isDragging}
|
|
width={width}
|
|
height={height}
|
|
locations={Immutable.fromJS(clusters)}
|
|
dotRadius={pointRadius}
|
|
pointRadiusUnit={pointRadiusUnit}
|
|
rgb={rgb}
|
|
globalOpacity={globalOpacity}
|
|
compositeOperation={'screen'}
|
|
renderWhileDragging={renderWhileDragging}
|
|
aggregation={hasCustomMetric ? aggregatorName : null}
|
|
lngLatAccessor={(location) => {
|
|
const coordinates = location.get('geometry').get('coordinates');
|
|
return [coordinates.get(0), coordinates.get(1)];
|
|
}}
|
|
/>
|
|
</MapGL>
|
|
);
|
|
}
|
|
}
|
|
|
|
MapBox.propTypes = propTypes;
|
|
MapBox.defaultProps = defaultProps;
|
|
|
|
export default MapBox;
|