mirror of https://gitee.com/antv-l7/antv-l7
163 lines
3.3 KiB
TypeScript
163 lines
3.3 KiB
TypeScript
import {
|
|
LineLayer,
|
|
Scene,
|
|
MaskLayer,
|
|
PolygonLayer,
|
|
PointLayer,
|
|
} from '@antv/l7';
|
|
import { GaodeMap } from '@antv/l7-maps';
|
|
import * as React from 'react';
|
|
|
|
export default class MaskPoints extends React.Component {
|
|
// @ts-ignore
|
|
private scene: Scene;
|
|
|
|
public componentWillUnmount() {
|
|
this.scene.destroy();
|
|
}
|
|
|
|
public async componentDidMount() {
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
stencil: true,
|
|
map: new GaodeMap({
|
|
center: [120.165, 30.26],
|
|
pitch: 0,
|
|
zoom: 15,
|
|
style: 'dark',
|
|
}),
|
|
});
|
|
this.scene = scene;
|
|
scene.addImage(
|
|
'00',
|
|
'https://gw.alipayobjects.com/zos/basement_prod/604b5e7f-309e-40db-b95b-4fac746c5153.svg',
|
|
);
|
|
const maskData = {
|
|
type: 'FeatureCollection',
|
|
features: [
|
|
{
|
|
type: 'Feature',
|
|
geometry: {
|
|
type: 'MultiPolygon',
|
|
coordinates: [
|
|
[
|
|
[
|
|
[120.16, 30.259660295442085],
|
|
[120.16, 30.25313608393673],
|
|
[120.17, 30.253729211980726],
|
|
[120.17, 30.258474107402265],
|
|
],
|
|
],
|
|
],
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
const maskData2 = {
|
|
type: 'FeatureCollection',
|
|
features: [
|
|
{
|
|
type: 'Feature',
|
|
geometry: {
|
|
type: 'MultiPolygon',
|
|
coordinates: [
|
|
[
|
|
[
|
|
[120.17, 30.258474107402265],
|
|
[120.17, 30.254174055663515],
|
|
[120.175, 30.254915457324778],
|
|
[120.175, 30.258474107402265],
|
|
],
|
|
],
|
|
],
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
scene.on('loaded', () => {
|
|
// let points = new PointLayer({ zIndex: 2, mask: true, maskInside: false }) // maskInside: true
|
|
let points = new PointLayer({
|
|
zIndex: 1,
|
|
mask: true,
|
|
maskInside: true,
|
|
maskfence: maskData,
|
|
maskOpacity: 0.2,
|
|
maskColor: '#f00',
|
|
})
|
|
.source(
|
|
[
|
|
{
|
|
name: 'n5',
|
|
lng: 120.17,
|
|
lat: 30.255,
|
|
},
|
|
],
|
|
{
|
|
parser: {
|
|
type: 'json',
|
|
x: 'lng',
|
|
y: 'lat',
|
|
},
|
|
},
|
|
)
|
|
.shape('simple')
|
|
.size(30)
|
|
.style({
|
|
opacity: 0.6,
|
|
})
|
|
.active(true);
|
|
|
|
let point2 = new PointLayer({
|
|
zIndex: 3,
|
|
mask: true,
|
|
maskInside: true,
|
|
// maskOpacity: 0.1,
|
|
maskColor: '#ff0',
|
|
maskfence: maskData2,
|
|
})
|
|
.source(
|
|
[
|
|
{
|
|
name: 'n4',
|
|
lng: 120.17,
|
|
lat: 30.2565,
|
|
},
|
|
],
|
|
{
|
|
parser: {
|
|
type: 'json',
|
|
x: 'lng',
|
|
y: 'lat',
|
|
},
|
|
},
|
|
)
|
|
.shape('simple')
|
|
.size(30)
|
|
.color('#0f0')
|
|
.active(true);
|
|
|
|
scene.addLayer(points);
|
|
scene.addLayer(point2);
|
|
});
|
|
}
|
|
|
|
public render() {
|
|
return (
|
|
<>
|
|
<div
|
|
id="map"
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
}
|