forked from OSMBuildings/OSMBuildings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
96 lines (83 loc) · 2 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"shaders": [
"picking",
"buildings",
"buildings_with_shadows",
"markers_simple",
"markers",
"markers_picking",
"basemap",
"basemap_with_shadows",
"texture",
"depth_normal",
"ambient_from_depth",
"flat_color",
"horizon",
"blur"
],
"libs": [
"node_modules/qolor/dist/Qolor.debug.js",
"node_modules/suncalc/suncalc.js",
"lib/triangulateSVG.js",
"lib/earcut.custom.js"
],
"workers": {
"feature": [
"src/Request.js",
"node_modules/qolor/dist/Qolor.debug.js",
"src/OBJ.js",
"lib/earcut.custom.js",
"src/triangulate/index.js",
"src/triangulate/roofs/index.js",
"src/triangulate/roofs/Tools.js",
"src/triangulate/split.js",
"src/triangulate/geometry/vec3.js",
"src/triangulate/geometry/vec2.js",
"src/features/bounds.js",
"src/features/worker.js"
]
},
"src": [
"src/glx/index.js",
"src/glx/Buffer.js",
"src/glx/Framebuffer.js",
"src/glx/Shader.js",
"src/glx/Matrix.js",
"src/glx/texture/index.js",
"src/glx/texture/Image.js",
"src/glx/texture/Data.js",
"src/Collection.js",
"src/workers/index.js",
"src/workers/Wrapper.js",
"src/icons/index.js",
"src/icons/Icon.js",
"src/markers/Marker.js",
"src/index.js",
"src/Events.js",
"src/variables.js",
"src/Request.js",
"src/util.js",
"src/layer/Grid.js",
"src/layer/Tile.js",
"src/layer/BitmapTile.js",
"src/layer/GeoJSONTile.js",
"src/features/index.js",
"src/features/Feature.js",
"src/mesh/MapPlane.js",
"src/geometry.js",
"src/view/index.js",
"src/view/Picking.js",
"src/view/Sun.js",
"src/view/Buildings.js",
"src/view/Markers.js",
"src/view/MarkersSimple.js",
"src/view/MapShadows.js",
"src/view/Basemap.js",
"src/view/HudRect.js",
"src/view/DepthNormal.js",
"src/view/AmbientMap.js",
"src/view/Overlay.js",
"src/view/Horizon.js",
"src/view/Blur.js"
]
}