-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathguides.js
85 lines (82 loc) · 1.76 KB
/
guides.js
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
const gettingStarted = [
{
id: 'render-your-first-scene',
title: 'Render your first scene',
url: 'docs/guides/render-your-first-scene',
},
{
id: 'import-data',
title: 'Import data',
url: 'docs/guides/import-data',
},
{
id: 'customize-your-scene',
title: 'Customize your scene',
url: 'docs/guides/customize-your-scene',
},
];
const apiAdvancedSteps = [
{
title: 'Postman quick start',
url: 'docs/guides/postman-quick-start',
},
{
title: 'Authentication',
url: 'docs/guides/authentication',
},
{
title: 'Import data with API',
url: 'docs/guides/import-data-with-api',
},
{
title: 'Import metadata',
url: 'docs/guides/import-metadata',
},
{
title: 'Render static scenes',
url: 'docs/guides/render-static-scenes',
},
{
title: 'Webhook Events',
url: 'docs/guides/webhook-events',
},
{
title: 'Synchronize Data',
url: 'docs/guides/sync-scenes-to-connect',
},
];
const reference = [
{
title: 'Install Web UI Components',
url: 'docs/guides/install-sdk',
},
{
title: 'Browser compatibility',
url: 'docs/guides/browser-compatibility',
},
{
title: 'Supported file formats',
url: 'docs/guides/supported-file-formats',
},
{
title: 'Platform architecture',
url: '/docs/guides/platform-architecture',
},
{
title: '3D model database',
url: '/docs/guides/model-database',
},
{
title: 'Transformation matrices',
url: 'docs/guides/transformation-matrices',
},
{
title: 'UI Component examples',
url: 'https://github.com/Vertexvis/vertex-web-sdk/tree/master/examples',
},
{
title: 'Glossary',
url: 'docs/guides/glossary',
},
];
module.exports = { gettingStarted, apiAdvancedSteps, reference };