index.js
4.61 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
* @Author: jiangbotao
* @Date: 2019-12-12 17:40:15
* @LastEditors : jiangbotao
* @LastEditTime : 2019-12-18 20:05:46
* @FilePath: \supermapvue\src\router\index.js
*/
/*
* @Author: jiangbotao
* @Date: 2019-12-12 17:40:15
* @LastEditors: jiangbotao
* @LastEditTime: 2019-12-18 00:03:33
* @FilePath: \supermapvue\src\router\index.js
*/
import Vue from 'vue'
import Router from 'vue-router'
import Mapviewer from '@/components/basic/Map_info'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'MapInfo',
component: () => import('@/components/basic/Map_info')
},
{
path: '/lyr_tdt',
name: 'Map_TDT',
component: () => import('@/components/layers/Map_tdt')
},
{
path: '/lyr_tdt_img',
name: 'Map_TDT_img',
component: () => import('@/components/layers/Map_tdt_img')
},
{
path: '/lyr_ags',
name: 'Map_ags',
component: () => import('@/components/layers/Map_ags')
},
{
path: '/lyr_mapbox',
name: 'Map_mapbox',
component: () => import('@/components/layers/Map_mapbox')
},
{
path: '/lyr_gaode',
name: 'Map_gaode',
component: () => import('@/components/layers/Map_gaode')
},
{
path: '/lyr_3dmvt',
name: 'Map_3dmvt',
component: () => import('@/components/layers/Map_3dmvt')
},
{
path: '/lyr_zj_basic',
name: 'Map_zj_basic',
component: () => import('@/components/layers/Map_zj_basic')
},
{
path: '/rastertile',
name: 'MapRasterTile',
component: () => import('@/components/basic/Map_rastertiles')
},
{
path: '/mvt',
name: 'MapMVT',
component: () => import('@/components/basic/Map_mvt')
},
{
path: '/measure',
name: 'MapMeasure',
component: () => import('@/components/basic/Map_measure')
},
{
path: '/feature_bounds',
name: 'Feature_Bounds',
component: () => import('@/components/features/Map_feature_bounds')
},
{
path: '/feature_buffer',
name: 'Feature_Buffer',
component: () => import('@/components/features/Map_feature_buffer')
},
{
path: '/feature_draw',
name: 'Feature_Draw',
component: () => import('@/components/features/Map_feature_draw')
},
{
path: '/feature_geo',
name: 'Feature_Geo',
component: () => import('@/components/features/Map_feature_geo')
},
{
path: '/feature_sql',
name: 'Feature_SQL',
component: () => import('@/components/features/Map_feature_sql')
},
{
path: '/query_bounds',
name: 'Query_Bounds',
component: () => import('@/components/query/Map_query_Bounds')
},
{
path: '/query_distance',
name: 'Query_Distance',
component: () => import('@/components/query/Map_query_distance')
},
{
path: '/query_geo',
name: 'Query_Geo',
component: () => import('@/components/query/Map_query_geo')
},
{
path: '/query_sql',
name: 'Query_SQL',
component: () => import('@/components/query/Map_query_sql')
},
{
path: '/spatial_buffer',
name: 'Spatial_Buffer',
component: () => import('@/components/spatial/Map_spatial_buffer')
},
{
path: '/spatial_heatmap',
name: 'Spatial_Heatmap',
component: () => import('@/components/spatial/Map_spatial_heatmap')
},
{
path: '/theme_dot',
name: 'Theme_Dot',
component: () => import('@/components/theme/Map_theme_dot')
},
{
path: '/theme_gra',
name: 'Theme_Gra',
component: () => import('@/components/theme/Map_theme_graduated.vue')
},
{
path: '/theme_range',
name: 'Theme_Range',
component: () => import('@/components/theme/Map_theme_range')
},
{
path: '/theme_label',
name: 'Theme_Label',
component: () => import('@/components/theme/Map_theme_label')
},
{
path: '/mvt_wz',
name: 'Theme_wz',
component: () => import('@/components/vt/Map_wz')
},
{
path: '/mvt_wzdemo',
name: 'Theme_wzdemo',
component: () => import('@/components/vt/Map_wzdemo')
},
{
path: '/map_ol',
name: 'Map_OL',
component: () => import('@/components/ol/OL')
},
{
path: '/map_ol2',
name: 'Map_OL2',
component: () => import('@/components/ol/OL2')
},
{
path: '/map_ol3',
name: 'Map_OL3',
component: () => import('@/components/ol/OL3')
},
{
path: '/map_ol_measure',
name: 'Map_OL_measure',
component: () => import('@/components/ol/OL_measure')
}
]
})