2020-04-17 10:47:34 +08:00
|
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import * as React from 'react';
|
|
|
|
import AMapModel from './Components/amap_three';
|
2021-09-17 17:19:48 +08:00
|
|
|
import AMap2Model from './Components/amap2_three';
|
2020-04-17 10:47:34 +08:00
|
|
|
import MapboxModel from './Components/mapbox_three';
|
|
|
|
import ThreeRender from './Components/threeRender';
|
2021-11-19 20:12:48 +08:00
|
|
|
import Threemap from './Components/threejsmap';
|
2021-10-25 16:44:37 +08:00
|
|
|
import Aspace from './Components/aspace';
|
2022-01-10 17:59:49 +08:00
|
|
|
import Car from './Components/amap_car';
|
2021-10-25 16:44:37 +08:00
|
|
|
|
2020-04-17 10:47:34 +08:00
|
|
|
storiesOf('3D 模型', module)
|
|
|
|
.add('ThreeJS Render', () => <ThreeRender />, {})
|
2021-05-31 20:04:34 +08:00
|
|
|
.add('高德模型1.x', () => <AMapModel />, {})
|
2021-09-17 17:19:48 +08:00
|
|
|
.add('高德模型2.x', () => <AMap2Model />, {})
|
2021-10-25 16:44:37 +08:00
|
|
|
.add('Mapbox模型', () => <MapboxModel />, {})
|
2021-11-19 20:12:48 +08:00
|
|
|
.add('Aspace', () => <Aspace />, {})
|
2022-01-10 17:59:49 +08:00
|
|
|
.add('Car', () => <Car />, {})
|
2021-11-19 20:12:48 +08:00
|
|
|
.add('Threemap', () => <Threemap />, {});
|