UNPKG
@geodanresearch/mapbox-3dtiles
Version:
latest (0.7.8)
0.7.8
0.7.7
0.7.6
0.7.5
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
OGC 3D Tiles layer for mapbox-gl
github.com/geodan/mapbox-3dtiles
geodan/mapbox-3dtiles
@geodanresearch/mapbox-3dtiles
/
modules
/
Highlighter.mjs
24 lines
(15 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import
*
as
THREE
from
'three'
;
class
HighLighter
{
constructor
(
scene, world
) {
this
.
scene
= scene;
this
.
world
= world;
this
.
highlighted
= []; }
add
(
) { }
remove
(
) { }
clear
(
) { } }
export
default
HighLighter
;