-
Notifications
You must be signed in to change notification settings - Fork 4
/
geoserver-preview.js
158 lines (130 loc) · 3.13 KB
/
geoserver-preview.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
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
goog.require('ol.proj.Projection');
goog.require('ol.View2D');
goog.require('ol.Map');
goog.require('ol.proj.METERS_PER_UNIT');
goog.require('ol.control.MousePosition');
goog.require('ol.layer.Image');
goog.require('ol.source.ImageWMS');
goog.require('ol.layer.Tile');
goog.require('ol.source.TileWMS');
goog.require('ol.coordinate');
goog.exportSymbol(
'ol.proj.Units',
ol.proj.Units);
goog.exportProperty(
ol.proj.Units,
'DEGREES',
ol.proj.Units.DEGREES);
goog.exportProperty(
ol.proj.Units,
'FEET',
ol.proj.Units.FEET);
goog.exportProperty(
ol.proj.Units,
'METERS',
ol.proj.Units.METERS);
goog.exportProperty(
ol.proj.Units,
'PIXELS',
ol.proj.Units.PIXELS);
goog.exportProperty(
ol.source.TileWMS.prototype,
'updateParams',
ol.source.TileWMS.prototype.updateParams);
goog.exportProperty(
ol.source.ImageWMS.prototype,
'updateParams',
ol.source.ImageWMS.prototype.updateParams);
goog.exportProperty(
ol.Collection.prototype,
'forEach',
ol.Collection.prototype.forEach);
goog.exportProperty(
ol.Map.prototype,
'getLayers',
ol.Map.prototype.getLayers);
goog.exportProperty(
ol.Object.prototype,
'set',
ol.Object.prototype.set);
goog.exportProperty(
ol.Map.prototype,
'updateSize',
ol.Map.prototype.updateSize);
goog.exportSymbol(
'ol.proj.METERS_PER_UNIT',
ol.proj.METERS_PER_UNIT
);
goog.exportProperty(
ol.source.ImageWMS.prototype,
'getGetFeatureInfoUrl',
ol.source.ImageWMS.prototype.getGetFeatureInfoUrl);
goog.exportProperty(
ol.source.TileWMS.prototype,
'getGetFeatureInfoUrl',
ol.source.TileWMS.prototype.getGetFeatureInfoUrl);
goog.exportProperty(
ol.layer.Layer.prototype,
'getSource',
ol.layer.Layer.prototype.getSource);
goog.exportProperty(
ol.proj.Projection.prototype,
'getUnits',
ol.proj.Projection.prototype.getUnits);
goog.exportProperty(
ol.Object.prototype,
'get',
ol.Object.prototype.get);
goog.exportProperty(
ol.View2D.prototype,
'fitExtent',
ol.View2D.prototype.fitExtent);
goog.exportProperty(
ol.Observable.prototype,
'on',
ol.Observable.prototype.on);
goog.exportSymbol(
'ol.RendererHint',
ol.RendererHint);
goog.exportProperty(
ol.RendererHint,
'CANVAS',
ol.RendererHint.CANVAS);
goog.exportSymbol(
'ol.proj.Units',
ol.proj.Units
);
goog.exportSymbol(
'ol.control.defaults',
ol.control.defaults);
goog.exportProperty(
ol.Collection.prototype,
'extend',
ol.Collection.prototype.extend);
goog.exportSymbol(
'ol.Map',
ol.Map);
goog.exportSymbol(
'ol.View2D',
ol.View2D);
goog.exportSymbol(
'ol.control.MousePosition',
ol.control.MousePosition);
goog.exportSymbol(
'ol.layer.Image',
ol.layer.Image);
goog.exportSymbol(
'ol.source.ImageWMS',
ol.source.ImageWMS);
goog.exportSymbol(
'ol.layer.Tile',
ol.layer.Tile);
goog.exportSymbol(
'ol.source.TileWMS',
ol.source.TileWMS);
goog.exportSymbol(
'ol.coordinate.createStringXY',
ol.coordinate.createStringXY);
goog.exportSymbol(
'ol.proj.Projection',
ol.proj.Projection);