This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmaps-routes.tsx
More file actions
55 lines (51 loc) · 4.02 KB
/
maps-routes.tsx
File metadata and controls
55 lines (51 loc) · 4.02 KB
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
import { Route } from 'react-router-dom';
import * as React from 'react';
import { DefaultMaps } from './default';
import { ProjectionMaps } from './projection';
import { MultilayerMaps } from './multilayer';
import { MarkerMaps } from './marker';
import { MarkerTemplateMaps } from './marker-template';
import { LabelMaps } from './label';
import { BubbleMaps } from './bubble';
import { NavigationLineMaps } from './navigation-line';
import { LegendMaps } from './legend';
import { AnnotationMaps } from './annotation';
import { TooltipMaps } from './tooltip';
import { SelectionMaps } from './selection';
import { ZoomingMaps } from './zooming';
import { DrilldownMaps } from './drilldown';
import { PrintMaps } from './print';
import { ExportMaps } from './export';
import { HeatMaps } from './heatmap';
import { CurvedMaps } from './curved';
import { EarthquakeMaps } from './earthquake';
import { HighlightMaps } from './highlight';
import { PieMaps } from './map-pie';
import { SeatBookingMaps } from './seat-booking';
export const mapsRoutes = (
<div>
<Route path='/:theme/maps/default' component={ DefaultMaps }/>
<Route path='/:theme/maps/projection' component={ ProjectionMaps }/>
<Route path='/:theme/maps/multilayer' component={ MultilayerMaps }/>
<Route path='/:theme/maps/marker' component={ MarkerMaps }/>
<Route path='/:theme/maps/marker-template' component={ MarkerTemplateMaps }/>
<Route path='/:theme/maps/label' component={ LabelMaps }/>
<Route path='/:theme/maps/bubble' component={ BubbleMaps }/>
<Route path='/:theme/maps/navigation-line' component={ NavigationLineMaps }/>
<Route path='/:theme/maps/legend' component={ LegendMaps }/>
<Route path='/:theme/maps/annotation' component={ AnnotationMaps }/>
<Route path='/:theme/maps/tooltip' component={ TooltipMaps }/>
<Route path='/:theme/maps/selection' component={ SelectionMaps }/>
<Route path='/:theme/maps/zooming' component={ ZoomingMaps }/>
<Route path='/:theme/maps/drilldown' component={ DrilldownMaps }/>
<Route path='/:theme/maps/print' component={ PrintMaps }/>
<Route path='/:theme/maps/export' component={ ExportMaps }/>
<Route path='/:theme/maps/heatmap' component={ HeatMaps }/>
<Route path='/:theme/maps/curved' component={ CurvedMaps }/>
<Route path='/:theme/maps/earthquake' component={ EarthquakeMaps }/>
<Route path='/:theme/maps/highlight' component={ HighlightMaps }/>
<Route path='/:theme/maps/map-pie' component={ PieMaps }/>
<Route path='/:theme/maps/seat-booking' component={ SeatBookingMaps }/>
</div>
)
export const mapsCategory = {"default":{"name":"Default Functionalities","category":"Maps"},"projection":{"name":"Projection","category":"Features"},"multilayer":{"name":"Multi-layers","category":"Features"},"marker":{"name":"Marker","category":"Features"},"marker-template":{"name":"Marker template","category":"Features"},"label":{"name":"Labels","category":"Features"},"bubble":{"name":"Bubble","category":"Features"},"navigation-line":{"name":"Navigation Lines","category":"Features"},"legend":{"name":"Legend","category":"Features"},"annotation":{"name":"Annotations","category":"Features"},"tooltip":{"name":"Tooltip","category":"User Interaction"},"selection":{"name":"Selection & Highlight","category":"User Interaction"},"zooming":{"name":"Zooming & Panning","category":"User Interaction"},"drilldown":{"name":"Drill down","category":"User Interaction"},"print":{"name":"Print","category":"Print and Export"},"export":{"name":"Export","category":"Print and Export"},"heatmap":{"name":"Heat Map","category":"Use Cases"},"curved":{"name":"Flight routes","category":"Use Cases"},"earthquake":{"name":"Earthquake indication","category":"Use Cases"},"highlight":{"name":"Highlighted region","category":"Use Cases"},"map-pie":{"name":"Map with Pie chart","category":"Use Cases"},"seat-booking":{"name":"Bus seat booking","category":"Use Cases"},"defaultSample":"maps/default"}