DefinitelyTyped/types/react-map-gl/react-map-gl-tests.tsx

123 lines
3.9 KiB
TypeScript

import * as React from "react";
import {
ViewState,
InteractiveMap,
CanvasOverlay,
SVGOverlay,
HTMLOverlay,
FullscreenControl,
GeolocateControl,
CanvasRedrawOptions,
HTMLRedrawOptions,
SVGRedrawOptions,
StaticMap
} from 'react-map-gl';
import * as MapboxGL from "mapbox-gl";
interface State {
viewState: ViewState;
}
class MyMap extends React.Component<{}, State> {
readonly state: State = {
viewState: {
bearing: 0,
latitude: 0,
longitude: 0,
zoom: 3,
}
};
private map: MapboxGL.Map;
render() {
return (
<div>
<InteractiveMap
{...this.state.viewState}
mapboxApiAccessToken="pk.test"
height={400}
width={400}
ref={this.setRefInteractive}
>
<FullscreenControl className="test-class" container={document.querySelector('body')} />
<GeolocateControl className="test-class" style={{ marginTop: "8px" }} />
<CanvasOverlay
redraw={opts => {
const {
ctx,
height,
project,
unproject,
width,
} = opts;
const xy: number[] = unproject(project([20, 20]));
ctx.clearRect(0, 0, width, height);
}}
/>
<CanvasOverlay
redraw={opts => {}}
captureScroll={true}
captureDrag={true}
captureClick={true}
captureDoubleClick={true}
/>
<SVGOverlay
redraw={() => {}}
/>
<SVGOverlay
redraw={opts => {
const {
height,
project,
unproject,
width,
} = opts;
const xy: number[] = unproject(project([20, 20]));
}}
captureScroll={true}
captureDrag={true}
captureClick={true}
captureDoubleClick={true}
/>
<HTMLOverlay
redraw={() => {}}
/>
<HTMLOverlay
redraw={opts => {
const {
height,
project,
unproject,
width,
} = opts;
const xy: number[] = unproject(project([20, 20]));
}}
style={{
border: "2px solid black"
}}
captureScroll={true}
captureDrag={true}
captureClick={true}
captureDoubleClick={true}
/>
</InteractiveMap>
<StaticMap
{...this.state.viewState}
mapboxApiAccessToken="pk.test"
height={400}
width={400}
ref={this.setRefStatic}
/>
</div>
);
}
private readonly setRefInteractive = (el: InteractiveMap) => {
this.map = el.getMap();
}
private readonly setRefStatic = (el: StaticMap) => {
this.map = el.getMap();
}
}