mirror of https://gitee.com/antv-l7/antv-l7
parent
235079336b
commit
5e1ef68cef
|
@ -47,7 +47,7 @@
|
||||||
opacity: 0.9
|
opacity: 0.9
|
||||||
}).render();
|
}).render();
|
||||||
|
|
||||||
scene.TextLayer({
|
const layer2 = scene.PointLayer({
|
||||||
zIndex: 5
|
zIndex: 5
|
||||||
})
|
})
|
||||||
.source(data)
|
.source(data)
|
||||||
|
@ -73,7 +73,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const popup = new L7.Popup({anchor:'left'}).setText('hello world')
|
const popup = new L7.Popup({anchor:'left'}).setText('hello world')
|
||||||
const marker = new L7.Marker({color:'blue'})
|
const marker = new L7.Marker({color:'blue'})
|
||||||
.setLnglat( [120.19382669582967, 30.258134])
|
.setLnglat( [120.19382669582967, 30.258134])
|
||||||
|
|
|
@ -54,7 +54,7 @@ window.scene = scene;
|
||||||
scene.on('loaded', () => {
|
scene.on('loaded', () => {
|
||||||
$.get('https://gw.alipayobjects.com/os/rmsportal/epnZEheZeDgsiSjSPcCv.json', data => {
|
$.get('https://gw.alipayobjects.com/os/rmsportal/epnZEheZeDgsiSjSPcCv.json', data => {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
const circleLayer = = scene.PointLayer({
|
const circleLayer = scene.PointLayer({
|
||||||
zIndex: 0,
|
zIndex: 0,
|
||||||
})
|
})
|
||||||
.source(data,{
|
.source(data,{
|
||||||
|
@ -70,8 +70,8 @@ scene.on('loaded', () => {
|
||||||
opacity: 1
|
opacity: 1
|
||||||
})
|
})
|
||||||
.render();
|
.render();
|
||||||
|
|
||||||
scene.TextLayer({
|
scene.PointLayer({
|
||||||
zIndex: 5
|
zIndex: 5
|
||||||
})
|
})
|
||||||
.source(circleLayer.layerSource)
|
.source(circleLayer.layerSource)
|
||||||
|
@ -91,7 +91,8 @@ scene.on('loaded', () => {
|
||||||
})
|
})
|
||||||
.render();
|
.render();
|
||||||
|
|
||||||
});
|
|
||||||
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -608,7 +608,7 @@ export default class Layer extends Base {
|
||||||
*/
|
*/
|
||||||
destroy() {
|
destroy() {
|
||||||
this.removeAllListeners();
|
this.removeAllListeners();
|
||||||
this.clearAllInteractions();
|
this.get('interacionController').clearAllInteractions();
|
||||||
this.clearMapEvent();
|
this.clearMapEvent();
|
||||||
if (this._object3D.type === 'composer') {
|
if (this._object3D.type === 'composer') {
|
||||||
this.remove(this._object3D);
|
this.remove(this._object3D);
|
||||||
|
@ -639,7 +639,6 @@ export default class Layer extends Base {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.layerMesh.geometry = null;
|
this.layerMesh.geometry = null;
|
||||||
this.layerMesh.material.dispose();
|
|
||||||
this.layerMesh.material = null;
|
this.layerMesh.material = null;
|
||||||
if (this._pickingMesh) {
|
if (this._pickingMesh) {
|
||||||
this._pickingMesh.children[0].geometry = null;
|
this._pickingMesh.children[0].geometry = null;
|
||||||
|
|
Loading…
Reference in New Issue