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.js
More file actions
50 lines (50 loc) · 5.22 KB
/
maps-routes.js
File metadata and controls
50 lines (50 loc) · 5.22 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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var react_router_dom_1 = require("react-router-dom");
var React = require("react");
var default_1 = require("./default");
var projection_1 = require("./projection");
var multilayer_1 = require("./multilayer");
var marker_1 = require("./marker");
var marker_template_1 = require("./marker-template");
var label_1 = require("./label");
var bubble_1 = require("./bubble");
var navigation_line_1 = require("./navigation-line");
var legend_1 = require("./legend");
var annotation_1 = require("./annotation");
var tooltip_1 = require("./tooltip");
var selection_1 = require("./selection");
var zooming_1 = require("./zooming");
var drilldown_1 = require("./drilldown");
var print_1 = require("./print");
var export_1 = require("./export");
var heatmap_1 = require("./heatmap");
var curved_1 = require("./curved");
var earthquake_1 = require("./earthquake");
var highlight_1 = require("./highlight");
var map_pie_1 = require("./map-pie");
var seat_booking_1 = require("./seat-booking");
exports.mapsRoutes = (React.createElement("div", null,
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/default', component: default_1.DefaultMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/projection', component: projection_1.ProjectionMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/multilayer', component: multilayer_1.MultilayerMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/marker', component: marker_1.MarkerMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/marker-template', component: marker_template_1.MarkerTemplateMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/label', component: label_1.LabelMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/bubble', component: bubble_1.BubbleMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/navigation-line', component: navigation_line_1.NavigationLineMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/legend', component: legend_1.LegendMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/annotation', component: annotation_1.AnnotationMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/tooltip', component: tooltip_1.TooltipMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/selection', component: selection_1.SelectionMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/zooming', component: zooming_1.ZoomingMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/drilldown', component: drilldown_1.DrilldownMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/print', component: print_1.PrintMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/export', component: export_1.ExportMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/heatmap', component: heatmap_1.HeatMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/curved', component: curved_1.CurvedMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/earthquake', component: earthquake_1.EarthquakeMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/highlight', component: highlight_1.HighlightMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/map-pie', component: map_pie_1.PieMaps }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/maps/seat-booking', component: seat_booking_1.SeatBookingMaps })));
exports.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" };