atlas_middleware 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +3 -0
- data/README +3 -0
- data/lib/arc_server_soap.rb +47 -0
- data/lib/atlas_middleware.rb +5 -0
- data/lib/cgns_search.rb +30 -0
- data/lib/esri/soap/map_server/classes.rb +4328 -0
- data/lib/esri/soap/map_server/client.rb +326 -0
- data/lib/esri/soap/map_server/map_server.rb +39 -0
- data/lib/esri/soap/map_server/mapping_registry.rb +4300 -0
- data/lib/map_server_legend_info.rb +17 -0
- data/lib/pdf_template.rb +206 -0
- data/lib/postal_code_lookup.rb +54 -0
- data/lib/print_map/job.rb +49 -0
- data/lib/print_map/legend_images_collector.rb +34 -0
- data/lib/print_map/map_exporter.rb +20 -0
- data/lib/print_map/pdf_generator.rb +146 -0
- data/lib/print_map/worker.rb +71 -0
- data/lib/print_map_service.rb +48 -0
- data/lib/rest_proxy.rb +15 -0
- metadata +113 -0
@@ -0,0 +1,4300 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/classes.rb'
|
2
|
+
require 'soap/mapping'
|
3
|
+
|
4
|
+
module ESRI
|
5
|
+
module Soap
|
6
|
+
module MapServer
|
7
|
+
module MappingRegistry
|
8
|
+
EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
|
9
|
+
LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
|
10
|
+
NsC_93 = "http://www.esri.com/schemas/ArcGIS/9.3"
|
11
|
+
|
12
|
+
EncodedRegistry.register(
|
13
|
+
:class => ESRI::Soap::MapServer::TileCacheInfo,
|
14
|
+
:schema_type => XSD::QName.new(NsC_93, "TileCacheInfo"),
|
15
|
+
:schema_element => [
|
16
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]],
|
17
|
+
["tileOrigin", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "TileOrigin")], [0, 1]],
|
18
|
+
["tileCols", ["SOAP::SOAPInt", XSD::QName.new(nil, "TileCols")]],
|
19
|
+
["tileRows", ["SOAP::SOAPInt", XSD::QName.new(nil, "TileRows")]],
|
20
|
+
["dPI", ["SOAP::SOAPInt", XSD::QName.new(nil, "DPI")]],
|
21
|
+
["lODInfos", ["ESRI::Soap::MapServer::ArrayOfLODInfo", XSD::QName.new(nil, "LODInfos")], [0, 1]]
|
22
|
+
]
|
23
|
+
)
|
24
|
+
|
25
|
+
EncodedRegistry.register(
|
26
|
+
:class => ESRI::Soap::MapServer::LODInfo,
|
27
|
+
:schema_type => XSD::QName.new(NsC_93, "LODInfo"),
|
28
|
+
:schema_element => [
|
29
|
+
["levelID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LevelID")]],
|
30
|
+
["scale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Scale")]],
|
31
|
+
["resolution", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Resolution")]]
|
32
|
+
]
|
33
|
+
)
|
34
|
+
|
35
|
+
EncodedRegistry.register(
|
36
|
+
:class => ESRI::Soap::MapServer::ArrayOfLODInfo,
|
37
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfLODInfo"),
|
38
|
+
:schema_element => [
|
39
|
+
["lODInfo", ["ESRI::Soap::MapServer::LODInfo[]", XSD::QName.new(nil, "LODInfo")], [0, nil]]
|
40
|
+
]
|
41
|
+
)
|
42
|
+
|
43
|
+
EncodedRegistry.register(
|
44
|
+
:class => ESRI::Soap::MapServer::AreaPatch,
|
45
|
+
:schema_type => XSD::QName.new(NsC_93, "AreaPatch"),
|
46
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Patch"),
|
47
|
+
:schema_element => [
|
48
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
49
|
+
["preserveAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "PreserveAspectRatio")], [0, 1]],
|
50
|
+
["geometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Geometry")], [0, 1]]
|
51
|
+
]
|
52
|
+
)
|
53
|
+
|
54
|
+
EncodedRegistry.register(
|
55
|
+
:class => ESRI::Soap::MapServer::ArrayOfGraphicElement,
|
56
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfGraphicElement"),
|
57
|
+
:schema_element => [
|
58
|
+
["graphicElement", ["ESRI::Soap::MapServer::GraphicElement[]", XSD::QName.new(nil, "GraphicElement")], [0, nil]]
|
59
|
+
]
|
60
|
+
)
|
61
|
+
|
62
|
+
EncodedRegistry.register(
|
63
|
+
:class => ESRI::Soap::MapServer::ArrayOfLayerDescription,
|
64
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfLayerDescription"),
|
65
|
+
:schema_element => [
|
66
|
+
["layerDescription", ["ESRI::Soap::MapServer::LayerDescription[]", XSD::QName.new(nil, "LayerDescription")], [0, nil]]
|
67
|
+
]
|
68
|
+
)
|
69
|
+
|
70
|
+
EncodedRegistry.register(
|
71
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapLayerInfo,
|
72
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapLayerInfo"),
|
73
|
+
:schema_element => [
|
74
|
+
["mapLayerInfo", ["ESRI::Soap::MapServer::MapLayerInfo[]", XSD::QName.new(nil, "MapLayerInfo")], [0, nil]]
|
75
|
+
]
|
76
|
+
)
|
77
|
+
|
78
|
+
EncodedRegistry.register(
|
79
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerBookmark,
|
80
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerBookmark"),
|
81
|
+
:schema_element => [
|
82
|
+
["mapServerBookmark", ["ESRI::Soap::MapServer::MapServerBookmark[]", XSD::QName.new(nil, "MapServerBookmark")], [0, nil]]
|
83
|
+
]
|
84
|
+
)
|
85
|
+
|
86
|
+
EncodedRegistry.register(
|
87
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerFindResult,
|
88
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerFindResult"),
|
89
|
+
:schema_element => [
|
90
|
+
["mapServerFindResult", ["ESRI::Soap::MapServer::MapServerFindResult[]", XSD::QName.new(nil, "MapServerFindResult")], [0, nil]]
|
91
|
+
]
|
92
|
+
)
|
93
|
+
|
94
|
+
EncodedRegistry.register(
|
95
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerHyperlink,
|
96
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerHyperlink"),
|
97
|
+
:schema_element => [
|
98
|
+
["mapServerHyperlink", ["ESRI::Soap::MapServer::MapServerHyperlink[]", XSD::QName.new(nil, "MapServerHyperlink")], [0, nil]]
|
99
|
+
]
|
100
|
+
)
|
101
|
+
|
102
|
+
EncodedRegistry.register(
|
103
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerIdentifyResult,
|
104
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerIdentifyResult"),
|
105
|
+
:schema_element => [
|
106
|
+
["mapServerIdentifyResult", ["ESRI::Soap::MapServer::MapServerIdentifyResult[]", XSD::QName.new(nil, "MapServerIdentifyResult")], [0, nil]]
|
107
|
+
]
|
108
|
+
)
|
109
|
+
|
110
|
+
EncodedRegistry.register(
|
111
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerLegendClass,
|
112
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerLegendClass"),
|
113
|
+
:schema_element => [
|
114
|
+
["mapServerLegendClass", ["ESRI::Soap::MapServer::MapServerLegendClass[]", XSD::QName.new(nil, "MapServerLegendClass")], [0, nil]]
|
115
|
+
]
|
116
|
+
)
|
117
|
+
|
118
|
+
EncodedRegistry.register(
|
119
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerLegendGroup,
|
120
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerLegendGroup"),
|
121
|
+
:schema_element => [
|
122
|
+
["mapServerLegendGroup", ["ESRI::Soap::MapServer::MapServerLegendGroup[]", XSD::QName.new(nil, "MapServerLegendGroup")], [0, nil]]
|
123
|
+
]
|
124
|
+
)
|
125
|
+
|
126
|
+
EncodedRegistry.register(
|
127
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerLegendInfo,
|
128
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerLegendInfo"),
|
129
|
+
:schema_element => [
|
130
|
+
["mapServerLegendInfo", ["ESRI::Soap::MapServer::MapServerLegendInfo[]", XSD::QName.new(nil, "MapServerLegendInfo")], [0, nil]]
|
131
|
+
]
|
132
|
+
)
|
133
|
+
|
134
|
+
EncodedRegistry.register(
|
135
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerRelationship,
|
136
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerRelationship"),
|
137
|
+
:schema_element => [
|
138
|
+
["mapServerRelationship", ["ESRI::Soap::MapServer::MapServerRelationship[]", XSD::QName.new(nil, "MapServerRelationship")], [0, nil]]
|
139
|
+
]
|
140
|
+
)
|
141
|
+
|
142
|
+
EncodedRegistry.register(
|
143
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerRow,
|
144
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerRow"),
|
145
|
+
:schema_element => [
|
146
|
+
["mapServerRow", ["ESRI::Soap::MapServer::MapServerRow[]", XSD::QName.new(nil, "MapServerRow")], [0, nil]]
|
147
|
+
]
|
148
|
+
)
|
149
|
+
|
150
|
+
EncodedRegistry.register(
|
151
|
+
:class => ESRI::Soap::MapServer::CenterAndScale,
|
152
|
+
:schema_type => XSD::QName.new(NsC_93, "CenterAndScale"),
|
153
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
154
|
+
:schema_element => [
|
155
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
156
|
+
["center", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "Center")], [0, 1]],
|
157
|
+
["scale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Scale")]],
|
158
|
+
["dPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DPI")], [0, 1]],
|
159
|
+
["devBottom", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevBottom")], [0, 1]],
|
160
|
+
["devLeft", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevLeft")], [0, 1]],
|
161
|
+
["devTop", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevTop")], [0, 1]],
|
162
|
+
["devRight", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevRight")], [0, 1]]
|
163
|
+
]
|
164
|
+
)
|
165
|
+
|
166
|
+
EncodedRegistry.register(
|
167
|
+
:class => ESRI::Soap::MapServer::CenterAndSize,
|
168
|
+
:schema_type => XSD::QName.new(NsC_93, "CenterAndSize"),
|
169
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
170
|
+
:schema_element => [
|
171
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
172
|
+
["center", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "Center")], [0, 1]],
|
173
|
+
["height", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Height")]],
|
174
|
+
["width", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Width")]],
|
175
|
+
["units", ["SOAP::SOAPString", XSD::QName.new(nil, "Units")]]
|
176
|
+
]
|
177
|
+
)
|
178
|
+
|
179
|
+
EncodedRegistry.register(
|
180
|
+
:class => ESRI::Soap::MapServer::FeatureExtent,
|
181
|
+
:schema_type => XSD::QName.new(NsC_93, "FeatureExtent"),
|
182
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
183
|
+
:schema_element => [
|
184
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
185
|
+
["defaultScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DefaultScale")]],
|
186
|
+
["expandRatio", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ExpandRatio")]],
|
187
|
+
["featureIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "FeatureIDs")], [0, 1]],
|
188
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
189
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
190
|
+
]
|
191
|
+
)
|
192
|
+
|
193
|
+
EncodedRegistry.register(
|
194
|
+
:class => ESRI::Soap::MapServer::ImageDescription,
|
195
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageDescription"),
|
196
|
+
:schema_element => [
|
197
|
+
["imageType", ["ESRI::Soap::MapServer::ImageType", XSD::QName.new(nil, "ImageType")], [0, 1]],
|
198
|
+
["imageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "ImageDisplay")], [0, 1]]
|
199
|
+
]
|
200
|
+
)
|
201
|
+
|
202
|
+
EncodedRegistry.register(
|
203
|
+
:class => ESRI::Soap::MapServer::ImageDisplay,
|
204
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageDisplay"),
|
205
|
+
:schema_element => [
|
206
|
+
["imageHeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageHeight")]],
|
207
|
+
["imageWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageWidth")]],
|
208
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]],
|
209
|
+
["transparentColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "TransparentColor")], [0, 1]]
|
210
|
+
]
|
211
|
+
)
|
212
|
+
|
213
|
+
EncodedRegistry.register(
|
214
|
+
:class => ESRI::Soap::MapServer::ImageResult,
|
215
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageResult"),
|
216
|
+
:schema_element => [
|
217
|
+
["imageData", ["SOAP::SOAPBase64", XSD::QName.new(nil, "ImageData")], [0, 1]],
|
218
|
+
["imageURL", ["SOAP::SOAPString", XSD::QName.new(nil, "ImageURL")]],
|
219
|
+
["imageHeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageHeight")]],
|
220
|
+
["imageWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageWidth")]],
|
221
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]]
|
222
|
+
]
|
223
|
+
)
|
224
|
+
|
225
|
+
EncodedRegistry.register(
|
226
|
+
:class => ESRI::Soap::MapServer::ImageType,
|
227
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageType"),
|
228
|
+
:schema_element => [
|
229
|
+
["imageFormat", ["ESRI::Soap::MapServer::EsriImageFormat", XSD::QName.new(nil, "ImageFormat")]],
|
230
|
+
["imageReturnType", ["ESRI::Soap::MapServer::EsriImageReturnType", XSD::QName.new(nil, "ImageReturnType")]]
|
231
|
+
]
|
232
|
+
)
|
233
|
+
|
234
|
+
EncodedRegistry.register(
|
235
|
+
:class => ESRI::Soap::MapServer::LayerDescription,
|
236
|
+
:schema_type => XSD::QName.new(NsC_93, "LayerDescription"),
|
237
|
+
:schema_element => [
|
238
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
239
|
+
["visible", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Visible")]],
|
240
|
+
["showLabels", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ShowLabels")]],
|
241
|
+
["scaleSymbols", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ScaleSymbols")]],
|
242
|
+
["selectionFeatures", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "SelectionFeatures")], [0, 1]],
|
243
|
+
["selectionColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "SelectionColor")], [0, 1]],
|
244
|
+
["selectionSymbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "SelectionSymbol")], [0, 1]],
|
245
|
+
["setSelectionSymbol", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "SetSelectionSymbol")]],
|
246
|
+
["selectionBufferDistance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "SelectionBufferDistance")]],
|
247
|
+
["showSelectionBuffer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ShowSelectionBuffer")]],
|
248
|
+
["definitionExpression", ["SOAP::SOAPString", XSD::QName.new(nil, "DefinitionExpression")]],
|
249
|
+
["sourceID", ["SOAP::SOAPString", XSD::QName.new(nil, "SourceID")], [0, 1]],
|
250
|
+
["selectionBufferSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "SelectionBufferSymbol")], [0, 1]],
|
251
|
+
["layerResultOptions", ["ESRI::Soap::MapServer::LayerResultOptions", XSD::QName.new(nil, "LayerResultOptions")], [0, 1]]
|
252
|
+
]
|
253
|
+
)
|
254
|
+
|
255
|
+
EncodedRegistry.register(
|
256
|
+
:class => ESRI::Soap::MapServer::LayerResultOptions,
|
257
|
+
:schema_type => XSD::QName.new(NsC_93, "LayerResultOptions"),
|
258
|
+
:schema_element => [
|
259
|
+
["includeGeometry", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IncludeGeometry")], [0, 1]],
|
260
|
+
["geometryResultOptions", ["ESRI::Soap::MapServer::GeometryResultOptions", XSD::QName.new(nil, "GeometryResultOptions")], [0, 1]],
|
261
|
+
["returnFieldNamesInResults", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ReturnFieldNamesInResults")], [0, 1]],
|
262
|
+
["formatValuesInResults", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FormatValuesInResults")], [0, 1]]
|
263
|
+
]
|
264
|
+
)
|
265
|
+
|
266
|
+
EncodedRegistry.register(
|
267
|
+
:class => ESRI::Soap::MapServer::LinePatch,
|
268
|
+
:schema_type => XSD::QName.new(NsC_93, "LinePatch"),
|
269
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Patch"),
|
270
|
+
:schema_element => [
|
271
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
272
|
+
["preserveAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "PreserveAspectRatio")], [0, 1]],
|
273
|
+
["geometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Geometry")], [0, 1]]
|
274
|
+
]
|
275
|
+
)
|
276
|
+
|
277
|
+
EncodedRegistry.register(
|
278
|
+
:class => ESRI::Soap::MapServer::MapDescription,
|
279
|
+
:schema_type => XSD::QName.new(NsC_93, "MapDescription"),
|
280
|
+
:schema_element => [
|
281
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
282
|
+
["mapArea", ["ESRI::Soap::MapServer::MapArea", XSD::QName.new(nil, "MapArea")], [0, 1]],
|
283
|
+
["layerDescriptions", ["ESRI::Soap::MapServer::ArrayOfLayerDescription", XSD::QName.new(nil, "LayerDescriptions")], [0, 1]],
|
284
|
+
["rotation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Rotation")]],
|
285
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]],
|
286
|
+
["transparentColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "TransparentColor")], [0, 1]],
|
287
|
+
["selectionColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "SelectionColor")], [0, 1]],
|
288
|
+
["backgroundSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "BackgroundSymbol")], [0, 1]],
|
289
|
+
["customGraphics", ["ESRI::Soap::MapServer::ArrayOfGraphicElement", XSD::QName.new(nil, "CustomGraphics")], [0, 1]],
|
290
|
+
["geoTransformation", ["ESRI::Soap::MapServer::GeoTransformation", XSD::QName.new(nil, "GeoTransformation")], [0, 1]]
|
291
|
+
]
|
292
|
+
)
|
293
|
+
|
294
|
+
EncodedRegistry.register(
|
295
|
+
:class => ESRI::Soap::MapServer::MapExtent,
|
296
|
+
:schema_type => XSD::QName.new(NsC_93, "MapExtent"),
|
297
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
298
|
+
:schema_element => [
|
299
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]]
|
300
|
+
]
|
301
|
+
)
|
302
|
+
|
303
|
+
EncodedRegistry.register(
|
304
|
+
:class => ESRI::Soap::MapServer::MapImage,
|
305
|
+
:schema_type => XSD::QName.new(NsC_93, "MapImage"),
|
306
|
+
:schema_element => [
|
307
|
+
["imageData", ["SOAP::SOAPBase64", XSD::QName.new(nil, "ImageData")], [0, 1]],
|
308
|
+
["imageURL", ["SOAP::SOAPString", XSD::QName.new(nil, "ImageURL")]],
|
309
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
310
|
+
["visibleLayerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "VisibleLayerIDs")], [0, 1]],
|
311
|
+
["mapScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MapScale")]],
|
312
|
+
["imageHeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageHeight")]],
|
313
|
+
["imageWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageWidth")]],
|
314
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]]
|
315
|
+
]
|
316
|
+
)
|
317
|
+
|
318
|
+
EncodedRegistry.register(
|
319
|
+
:class => ESRI::Soap::MapServer::MapLayerInfo,
|
320
|
+
:schema_type => XSD::QName.new(NsC_93, "MapLayerInfo"),
|
321
|
+
:schema_element => [
|
322
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
323
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
324
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")]],
|
325
|
+
["layerType", ["SOAP::SOAPString", XSD::QName.new(nil, "LayerType")]],
|
326
|
+
["sourceDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "SourceDescription")]],
|
327
|
+
["hasLabels", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasLabels")]],
|
328
|
+
["canSelect", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanSelect")]],
|
329
|
+
["canScaleSymbols", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanScaleSymbols")]],
|
330
|
+
["minScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MinScale")]],
|
331
|
+
["maxScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaxScale")]],
|
332
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
333
|
+
["hasHyperlinks", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasHyperlinks")]],
|
334
|
+
["hasAttributes", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasAttributes")]],
|
335
|
+
["canIdentify", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanIdentify")]],
|
336
|
+
["canFind", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanFind")]],
|
337
|
+
["isFeatureLayer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsFeatureLayer")]],
|
338
|
+
["fields", ["ESRI::Soap::MapServer::Fields", XSD::QName.new(nil, "Fields")], [0, 1]],
|
339
|
+
["displayField", ["SOAP::SOAPString", XSD::QName.new(nil, "DisplayField")]],
|
340
|
+
["iDField", ["SOAP::SOAPString", XSD::QName.new(nil, "IDField")]],
|
341
|
+
["isComposite", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsComposite")]],
|
342
|
+
["subLayerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "SubLayerIDs")], [0, 1]],
|
343
|
+
["parentLayerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "ParentLayerID")]],
|
344
|
+
["fieldAliases", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "FieldAliases")], [0, 1]],
|
345
|
+
["copyrightText", ["SOAP::SOAPString", XSD::QName.new(nil, "CopyrightText")]]
|
346
|
+
]
|
347
|
+
)
|
348
|
+
|
349
|
+
EncodedRegistry.register(
|
350
|
+
:class => ESRI::Soap::MapServer::MapServerBookmark,
|
351
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerBookmark"),
|
352
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
353
|
+
:schema_element => [
|
354
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
355
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]]
|
356
|
+
]
|
357
|
+
)
|
358
|
+
|
359
|
+
EncodedRegistry.register(
|
360
|
+
:class => ESRI::Soap::MapServer::MapServerFindResult,
|
361
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerFindResult"),
|
362
|
+
:schema_element => [
|
363
|
+
["value", ["SOAP::SOAPString", XSD::QName.new(nil, "Value")]],
|
364
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
365
|
+
["featureID", ["SOAP::SOAPInt", XSD::QName.new(nil, "FeatureID")]],
|
366
|
+
["fieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "FieldName")]],
|
367
|
+
["shape", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Shape")], [0, 1]],
|
368
|
+
["properties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Properties")], [0, 1]]
|
369
|
+
]
|
370
|
+
)
|
371
|
+
|
372
|
+
EncodedRegistry.register(
|
373
|
+
:class => ESRI::Soap::MapServer::MapServerHyperlink,
|
374
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerHyperlink"),
|
375
|
+
:schema_element => [
|
376
|
+
["location", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Location")], [0, 1]],
|
377
|
+
["uRL", ["SOAP::SOAPString", XSD::QName.new(nil, "URL")]]
|
378
|
+
]
|
379
|
+
)
|
380
|
+
|
381
|
+
EncodedRegistry.register(
|
382
|
+
:class => ESRI::Soap::MapServer::MapServerIdentifyResult,
|
383
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerIdentifyResult"),
|
384
|
+
:schema_element => [
|
385
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
386
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
387
|
+
["properties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Properties")], [0, 1]],
|
388
|
+
["shape", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Shape")], [0, 1]],
|
389
|
+
["relationships", ["ESRI::Soap::MapServer::ArrayOfMapServerRelationship", XSD::QName.new(nil, "Relationships")], [0, 1]]
|
390
|
+
]
|
391
|
+
)
|
392
|
+
|
393
|
+
EncodedRegistry.register(
|
394
|
+
:class => ESRI::Soap::MapServer::MapServerInfo,
|
395
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerInfo"),
|
396
|
+
:schema_element => [
|
397
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
398
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")]],
|
399
|
+
["fullExtent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "FullExtent")], [0, 1]],
|
400
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
401
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]],
|
402
|
+
["mapLayerInfos", ["ESRI::Soap::MapServer::ArrayOfMapLayerInfo", XSD::QName.new(nil, "MapLayerInfos")], [0, 1]],
|
403
|
+
["backgroundColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BackgroundColor")], [0, 1]],
|
404
|
+
["bookmarks", ["ESRI::Soap::MapServer::ArrayOfMapServerBookmark", XSD::QName.new(nil, "Bookmarks")], [0, 1]],
|
405
|
+
["defaultMapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "DefaultMapDescription")], [0, 1]],
|
406
|
+
["units", ["ESRI::Soap::MapServer::EsriUnits", XSD::QName.new(nil, "Units")]],
|
407
|
+
["supportedImageReturnTypes", ["ESRI::Soap::MapServer::EsriImageReturnType", XSD::QName.new(nil, "SupportedImageReturnTypes")]],
|
408
|
+
["backgroundSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "BackgroundSymbol")], [0, 1]],
|
409
|
+
["copyrightText", ["SOAP::SOAPString", XSD::QName.new(nil, "CopyrightText")]]
|
410
|
+
]
|
411
|
+
)
|
412
|
+
|
413
|
+
EncodedRegistry.register(
|
414
|
+
:class => ESRI::Soap::MapServer::MapServerLegendClass,
|
415
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendClass"),
|
416
|
+
:schema_element => [
|
417
|
+
["label", ["SOAP::SOAPString", XSD::QName.new(nil, "Label")]],
|
418
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")]],
|
419
|
+
["symbolImage", ["ESRI::Soap::MapServer::ImageResult", XSD::QName.new(nil, "SymbolImage")], [0, 1]],
|
420
|
+
["transparentColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "TransparentColor")], [0, 1]]
|
421
|
+
]
|
422
|
+
)
|
423
|
+
|
424
|
+
EncodedRegistry.register(
|
425
|
+
:class => ESRI::Soap::MapServer::MapServerLegendGroup,
|
426
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendGroup"),
|
427
|
+
:schema_element => [
|
428
|
+
["heading", ["SOAP::SOAPString", XSD::QName.new(nil, "Heading")]],
|
429
|
+
["legendClasses", ["ESRI::Soap::MapServer::ArrayOfMapServerLegendClass", XSD::QName.new(nil, "LegendClasses")], [0, 1]]
|
430
|
+
]
|
431
|
+
)
|
432
|
+
|
433
|
+
EncodedRegistry.register(
|
434
|
+
:class => ESRI::Soap::MapServer::MapServerLegendInfo,
|
435
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendInfo"),
|
436
|
+
:schema_element => [
|
437
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
438
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
439
|
+
["legendGroups", ["ESRI::Soap::MapServer::ArrayOfMapServerLegendGroup", XSD::QName.new(nil, "LegendGroups")], [0, 1]]
|
440
|
+
]
|
441
|
+
)
|
442
|
+
|
443
|
+
EncodedRegistry.register(
|
444
|
+
:class => ESRI::Soap::MapServer::MapServerLegendPatch,
|
445
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendPatch"),
|
446
|
+
:schema_element => [
|
447
|
+
["width", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Width")]],
|
448
|
+
["height", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Height")]],
|
449
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]],
|
450
|
+
["linePatch", ["ESRI::Soap::MapServer::LinePatch", XSD::QName.new(nil, "LinePatch")], [0, 1]],
|
451
|
+
["areaPatch", ["ESRI::Soap::MapServer::AreaPatch", XSD::QName.new(nil, "AreaPatch")], [0, 1]]
|
452
|
+
]
|
453
|
+
)
|
454
|
+
|
455
|
+
EncodedRegistry.register(
|
456
|
+
:class => ESRI::Soap::MapServer::MapServerRelationship,
|
457
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerRelationship"),
|
458
|
+
:schema_element => [
|
459
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
460
|
+
["rows", ["ESRI::Soap::MapServer::ArrayOfMapServerRow", XSD::QName.new(nil, "Rows")], [0, 1]]
|
461
|
+
]
|
462
|
+
)
|
463
|
+
|
464
|
+
EncodedRegistry.register(
|
465
|
+
:class => ESRI::Soap::MapServer::MapServerRow,
|
466
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerRow"),
|
467
|
+
:schema_element => [
|
468
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
469
|
+
["properties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Properties")], [0, 1]],
|
470
|
+
["relationships", ["ESRI::Soap::MapServer::ArrayOfMapServerRelationship", XSD::QName.new(nil, "Relationships")], [0, 1]]
|
471
|
+
]
|
472
|
+
)
|
473
|
+
|
474
|
+
EncodedRegistry.register(
|
475
|
+
:class => ESRI::Soap::MapServer::AlternatingScaleBar,
|
476
|
+
:schema_type => XSD::QName.new(NsC_93, "AlternatingScaleBar"),
|
477
|
+
:schema_basetype => XSD::QName.new(NsC_93, "ScaleBar"),
|
478
|
+
:schema_element => [
|
479
|
+
["barHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "BarHeight")], [0, 1]],
|
480
|
+
["division", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Division")], [0, 1]],
|
481
|
+
["divisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Divisions")], [0, 1]],
|
482
|
+
["divisionsBeforeZero", ["SOAP::SOAPShort", XSD::QName.new(nil, "DivisionsBeforeZero")], [0, 1]],
|
483
|
+
["subdivisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Subdivisions")], [0, 1]],
|
484
|
+
["units", ["ESRI::Soap::MapServer::EsriUnits", XSD::QName.new(nil, "Units")], [0, 1]],
|
485
|
+
["unitLabel", ["SOAP::SOAPString", XSD::QName.new(nil, "UnitLabel")], [0, 1]],
|
486
|
+
["unitLabelPosition", ["ESRI::Soap::MapServer::EsriScaleBarPos", XSD::QName.new(nil, "UnitLabelPosition")], [0, 1]],
|
487
|
+
["unitLabelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "UnitLabelGap")], [0, 1]],
|
488
|
+
["unitLabelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "UnitLabelSymbol")], [0, 1]],
|
489
|
+
["labelFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "LabelFrequency")], [0, 1]],
|
490
|
+
["labelPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "LabelPosition")], [0, 1]],
|
491
|
+
["labelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LabelGap")], [0, 1]],
|
492
|
+
["labelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "LabelSymbol")], [0, 1]],
|
493
|
+
["numberFormat", ["ESRI::Soap::MapServer::NumericFormat", XSD::QName.new(nil, "NumberFormat")], [0, 1]],
|
494
|
+
["resizeHint", ["ESRI::Soap::MapServer::EsriScaleBarResizeHint", XSD::QName.new(nil, "ResizeHint")], [0, 1]],
|
495
|
+
["fillSymbol1", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "FillSymbol1")], [0, 1]],
|
496
|
+
["fillSymbol2", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "FillSymbol2")], [0, 1]],
|
497
|
+
["divisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "DivisionMarkSymbol")], [0, 1]],
|
498
|
+
["subdivisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "SubdivisionMarkSymbol")], [0, 1]],
|
499
|
+
["divisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DivisionMarkHeight")], [0, 1]],
|
500
|
+
["subdivisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "SubdivisionMarkHeight")], [0, 1]],
|
501
|
+
["markPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "MarkPosition")], [0, 1]],
|
502
|
+
["markFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "MarkFrequency")], [0, 1]]
|
503
|
+
]
|
504
|
+
)
|
505
|
+
|
506
|
+
EncodedRegistry.register(
|
507
|
+
:class => ESRI::Soap::MapServer::SingleDivisionScaleBar,
|
508
|
+
:schema_type => XSD::QName.new(NsC_93, "SingleDivisionScaleBar"),
|
509
|
+
:schema_basetype => XSD::QName.new(NsC_93, "ScaleBar"),
|
510
|
+
:schema_element => [
|
511
|
+
["barHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "BarHeight")], [0, 1]],
|
512
|
+
["division", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Division")], [0, 1]],
|
513
|
+
["divisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Divisions")], [0, 1]],
|
514
|
+
["divisionsBeforeZero", ["SOAP::SOAPShort", XSD::QName.new(nil, "DivisionsBeforeZero")], [0, 1]],
|
515
|
+
["subdivisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Subdivisions")], [0, 1]],
|
516
|
+
["units", ["ESRI::Soap::MapServer::EsriUnits", XSD::QName.new(nil, "Units")], [0, 1]],
|
517
|
+
["unitLabel", ["SOAP::SOAPString", XSD::QName.new(nil, "UnitLabel")], [0, 1]],
|
518
|
+
["unitLabelPosition", ["ESRI::Soap::MapServer::EsriScaleBarPos", XSD::QName.new(nil, "UnitLabelPosition")], [0, 1]],
|
519
|
+
["unitLabelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "UnitLabelGap")], [0, 1]],
|
520
|
+
["unitLabelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "UnitLabelSymbol")], [0, 1]],
|
521
|
+
["labelFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "LabelFrequency")], [0, 1]],
|
522
|
+
["labelPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "LabelPosition")], [0, 1]],
|
523
|
+
["labelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LabelGap")], [0, 1]],
|
524
|
+
["labelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "LabelSymbol")], [0, 1]],
|
525
|
+
["numberFormat", ["ESRI::Soap::MapServer::NumericFormat", XSD::QName.new(nil, "NumberFormat")], [0, 1]],
|
526
|
+
["resizeHint", ["ESRI::Soap::MapServer::EsriScaleBarResizeHint", XSD::QName.new(nil, "ResizeHint")], [0, 1]],
|
527
|
+
["fillSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "FillSymbol")], [0, 1]],
|
528
|
+
["divisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "DivisionMarkSymbol")], [0, 1]],
|
529
|
+
["subdivisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "SubdivisionMarkSymbol")], [0, 1]],
|
530
|
+
["divisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DivisionMarkHeight")], [0, 1]],
|
531
|
+
["subdivisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "SubdivisionMarkHeight")], [0, 1]],
|
532
|
+
["markPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "MarkPosition")], [0, 1]],
|
533
|
+
["markFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "MarkFrequency")], [0, 1]]
|
534
|
+
]
|
535
|
+
)
|
536
|
+
|
537
|
+
EncodedRegistry.register(
|
538
|
+
:class => ESRI::Soap::MapServer::SQLSyntaxInfo,
|
539
|
+
:schema_type => XSD::QName.new(NsC_93, "SQLSyntaxInfo"),
|
540
|
+
:schema_element => [
|
541
|
+
["functionNames", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "FunctionNames")], [0, 1]],
|
542
|
+
["specialCharacters", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "SpecialCharacters")], [0, 1]],
|
543
|
+
["supportedPredicates", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "SupportedPredicates")], [0, 1]],
|
544
|
+
["supportedClauses", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "SupportedClauses")], [0, 1]],
|
545
|
+
["identifierCase", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IdentifierCase")]],
|
546
|
+
["delimitedIdentifierCase", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DelimitedIdentifierCase")]],
|
547
|
+
["stringComparisonCase", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "StringComparisonCase")]],
|
548
|
+
["keywords", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "Keywords")], [0, 1]],
|
549
|
+
["invalidCharacters", ["SOAP::SOAPString", XSD::QName.new(nil, "InvalidCharacters")]],
|
550
|
+
["invalidStartingCharacters", ["SOAP::SOAPString", XSD::QName.new(nil, "InvalidStartingCharacters")]]
|
551
|
+
]
|
552
|
+
)
|
553
|
+
|
554
|
+
EncodedRegistry.register(
|
555
|
+
:class => ESRI::Soap::MapServer::SymbolBackground,
|
556
|
+
:schema_type => XSD::QName.new(NsC_93, "SymbolBackground"),
|
557
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Background"),
|
558
|
+
:schema_element => [
|
559
|
+
["horizontalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "HorizontalGap")]],
|
560
|
+
["cornerRounding", ["SOAP::SOAPShort", XSD::QName.new(nil, "CornerRounding")]],
|
561
|
+
["verticalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "VerticalGap")]],
|
562
|
+
["symbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
563
|
+
]
|
564
|
+
)
|
565
|
+
|
566
|
+
EncodedRegistry.register(
|
567
|
+
:class => ESRI::Soap::MapServer::SymbolBorder,
|
568
|
+
:schema_type => XSD::QName.new(NsC_93, "SymbolBorder"),
|
569
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Border"),
|
570
|
+
:schema_element => [
|
571
|
+
["horizontalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "HorizontalGap")]],
|
572
|
+
["cornerRounding", ["SOAP::SOAPShort", XSD::QName.new(nil, "CornerRounding")]],
|
573
|
+
["verticalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "VerticalGap")]],
|
574
|
+
["symbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
575
|
+
]
|
576
|
+
)
|
577
|
+
|
578
|
+
EncodedRegistry.register(
|
579
|
+
:class => ESRI::Soap::MapServer::SymbolShadow,
|
580
|
+
:schema_type => XSD::QName.new(NsC_93, "SymbolShadow"),
|
581
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Shadow"),
|
582
|
+
:schema_element => [
|
583
|
+
["symbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
584
|
+
["cornerRounding", ["SOAP::SOAPShort", XSD::QName.new(nil, "CornerRounding")]],
|
585
|
+
["horizontalOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "HorizontalOffset")]],
|
586
|
+
["verticalOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "VerticalOffset")]]
|
587
|
+
]
|
588
|
+
)
|
589
|
+
|
590
|
+
EncodedRegistry.register(
|
591
|
+
:class => ESRI::Soap::MapServer::LineElement,
|
592
|
+
:schema_type => XSD::QName.new(NsC_93, "LineElement"),
|
593
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
594
|
+
:schema_element => [
|
595
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
596
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
597
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
598
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
599
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
600
|
+
["line", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Line")]],
|
601
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
602
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]]
|
603
|
+
]
|
604
|
+
)
|
605
|
+
|
606
|
+
EncodedRegistry.register(
|
607
|
+
:class => ESRI::Soap::MapServer::CircleElement,
|
608
|
+
:schema_type => XSD::QName.new(NsC_93, "CircleElement"),
|
609
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
610
|
+
:schema_element => [
|
611
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")]],
|
612
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
613
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
614
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
615
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
616
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
617
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
618
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
619
|
+
]
|
620
|
+
)
|
621
|
+
|
622
|
+
EncodedRegistry.register(
|
623
|
+
:class => ESRI::Soap::MapServer::EllipseElement,
|
624
|
+
:schema_type => XSD::QName.new(NsC_93, "EllipseElement"),
|
625
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
626
|
+
:schema_element => [
|
627
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")]],
|
628
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
629
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
630
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
631
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
632
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
633
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
634
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
635
|
+
]
|
636
|
+
)
|
637
|
+
|
638
|
+
EncodedRegistry.register(
|
639
|
+
:class => ESRI::Soap::MapServer::GroupElement,
|
640
|
+
:schema_type => XSD::QName.new(NsC_93, "GroupElement"),
|
641
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Element"),
|
642
|
+
:schema_element => [
|
643
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
644
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
645
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
646
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
647
|
+
["elements", ["ESRI::Soap::MapServer::ArrayOfGraphicElement", XSD::QName.new(nil, "Elements")]],
|
648
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")], [0, 1]],
|
649
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
650
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
651
|
+
["border", ["ESRI::Soap::MapServer::Border", XSD::QName.new(nil, "Border")], [0, 1]],
|
652
|
+
["background", ["ESRI::Soap::MapServer::Background", XSD::QName.new(nil, "Background")], [0, 1]],
|
653
|
+
["draftMode", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DraftMode")], [0, 1]],
|
654
|
+
["shadow", ["ESRI::Soap::MapServer::Shadow", XSD::QName.new(nil, "Shadow")], [0, 1]]
|
655
|
+
]
|
656
|
+
)
|
657
|
+
|
658
|
+
EncodedRegistry.register(
|
659
|
+
:class => ESRI::Soap::MapServer::MarkerElement,
|
660
|
+
:schema_type => XSD::QName.new(NsC_93, "MarkerElement"),
|
661
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
662
|
+
:schema_element => [
|
663
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
664
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
665
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
666
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
667
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
668
|
+
["point", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "Point")]],
|
669
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]]
|
670
|
+
]
|
671
|
+
)
|
672
|
+
|
673
|
+
EncodedRegistry.register(
|
674
|
+
:class => ESRI::Soap::MapServer::ParagraphTextElement,
|
675
|
+
:schema_type => XSD::QName.new(NsC_93, "ParagraphTextElement"),
|
676
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
677
|
+
:schema_element => [
|
678
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
679
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
680
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
681
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
682
|
+
["text", ["SOAP::SOAPString", XSD::QName.new(nil, "Text")], [0, 1]],
|
683
|
+
["scale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Scale")], [0, 1]],
|
684
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
685
|
+
["textGeometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "TextGeometry")]],
|
686
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
687
|
+
["frameBorder", ["ESRI::Soap::MapServer::Border", XSD::QName.new(nil, "FrameBorder")], [0, 1]],
|
688
|
+
["frameBackground", ["ESRI::Soap::MapServer::Background", XSD::QName.new(nil, "FrameBackground")], [0, 1]],
|
689
|
+
["frameShadow", ["ESRI::Soap::MapServer::Shadow", XSD::QName.new(nil, "FrameShadow")], [0, 1]],
|
690
|
+
["columnGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ColumnGap")], [0, 1]],
|
691
|
+
["columnCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "ColumnCount")], [0, 1]],
|
692
|
+
["margin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Margin")], [0, 1]]
|
693
|
+
]
|
694
|
+
)
|
695
|
+
|
696
|
+
EncodedRegistry.register(
|
697
|
+
:class => ESRI::Soap::MapServer::PolygonElement,
|
698
|
+
:schema_type => XSD::QName.new(NsC_93, "PolygonElement"),
|
699
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
700
|
+
:schema_element => [
|
701
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
702
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
703
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
704
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
705
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
706
|
+
["polygon", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Polygon")]],
|
707
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
708
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]]
|
709
|
+
]
|
710
|
+
)
|
711
|
+
|
712
|
+
EncodedRegistry.register(
|
713
|
+
:class => ESRI::Soap::MapServer::RectangleElement,
|
714
|
+
:schema_type => XSD::QName.new(NsC_93, "RectangleElement"),
|
715
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
716
|
+
:schema_element => [
|
717
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")]],
|
718
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
719
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
720
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
721
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
722
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
723
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
724
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
725
|
+
]
|
726
|
+
)
|
727
|
+
|
728
|
+
EncodedRegistry.register(
|
729
|
+
:class => ESRI::Soap::MapServer::TextElement,
|
730
|
+
:schema_type => XSD::QName.new(NsC_93, "TextElement"),
|
731
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
732
|
+
:schema_element => [
|
733
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
734
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
735
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
736
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
737
|
+
["text", ["SOAP::SOAPString", XSD::QName.new(nil, "Text")], [0, 1]],
|
738
|
+
["scale", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Scale")], [0, 1]],
|
739
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
740
|
+
["textGeometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "TextGeometry")]],
|
741
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]]
|
742
|
+
]
|
743
|
+
)
|
744
|
+
|
745
|
+
EncodedRegistry.register(
|
746
|
+
:class => ESRI::Soap::MapServer::Patch,
|
747
|
+
:schema_type => XSD::QName.new(NsC_93, "Patch"),
|
748
|
+
:schema_element => [
|
749
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
750
|
+
["preserveAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "PreserveAspectRatio")], [0, 1]],
|
751
|
+
["geometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Geometry")], [0, 1]]
|
752
|
+
]
|
753
|
+
)
|
754
|
+
|
755
|
+
EncodedRegistry.register(
|
756
|
+
:class => ESRI::Soap::MapServer::TileImageInfo,
|
757
|
+
:schema_type => XSD::QName.new(NsC_93, "TileImageInfo"),
|
758
|
+
:schema_element => [
|
759
|
+
["cacheTileFormat", ["SOAP::SOAPString", XSD::QName.new(nil, "CacheTileFormat")]],
|
760
|
+
["compressionQuality", ["SOAP::SOAPInt", XSD::QName.new(nil, "CompressionQuality")]],
|
761
|
+
["antialiasing", ["SOAP::SOAPString", XSD::QName.new(nil, "Antialiasing")]]
|
762
|
+
]
|
763
|
+
)
|
764
|
+
|
765
|
+
EncodedRegistry.register(
|
766
|
+
:class => ESRI::Soap::MapServer::LayerCacheInfo,
|
767
|
+
:schema_type => XSD::QName.new(NsC_93, "LayerCacheInfo"),
|
768
|
+
:schema_element => [
|
769
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
770
|
+
["hasCache", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasCache")]]
|
771
|
+
]
|
772
|
+
)
|
773
|
+
|
774
|
+
EncodedRegistry.register(
|
775
|
+
:class => ESRI::Soap::MapServer::ArrayOfLayerCacheInfo,
|
776
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfLayerCacheInfo"),
|
777
|
+
:schema_element => [
|
778
|
+
["layerCacheInfo", ["ESRI::Soap::MapServer::LayerCacheInfo", XSD::QName.new(nil, "LayerCacheInfo")]]
|
779
|
+
]
|
780
|
+
)
|
781
|
+
|
782
|
+
EncodedRegistry.register(
|
783
|
+
:class => ESRI::Soap::MapServer::CacheDescriptionInfo,
|
784
|
+
:schema_type => XSD::QName.new(NsC_93, "CacheDescriptionInfo"),
|
785
|
+
:schema_element => [
|
786
|
+
["tileCacheInfo", ["ESRI::Soap::MapServer::TileCacheInfo", XSD::QName.new(nil, "TileCacheInfo")]],
|
787
|
+
["tileImageInfo", ["ESRI::Soap::MapServer::TileImageInfo", XSD::QName.new(nil, "TileImageInfo")]],
|
788
|
+
["layerCacheInfos", ["ESRI::Soap::MapServer::ArrayOfLayerCacheInfo", XSD::QName.new(nil, "LayerCacheInfos")]],
|
789
|
+
["cacheControlInfo", ["ESRI::Soap::MapServer::CacheControlInfo", XSD::QName.new(nil, "CacheControlInfo")]],
|
790
|
+
["serviceType", ["ESRI::Soap::MapServer::EsriCachedMapServiceType", XSD::QName.new(nil, "ServiceType")]]
|
791
|
+
]
|
792
|
+
)
|
793
|
+
|
794
|
+
EncodedRegistry.register(
|
795
|
+
:class => ESRI::Soap::MapServer::CacheControlInfo,
|
796
|
+
:schema_type => XSD::QName.new(NsC_93, "CacheControlInfo"),
|
797
|
+
:schema_element => [
|
798
|
+
["clientCachingAllowed", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ClientCachingAllowed")]]
|
799
|
+
]
|
800
|
+
)
|
801
|
+
|
802
|
+
EncodedRegistry.register(
|
803
|
+
:class => ESRI::Soap::MapServer::QueryResultOptions,
|
804
|
+
:schema_type => XSD::QName.new(NsC_93, "QueryResultOptions"),
|
805
|
+
:schema_element => [
|
806
|
+
["format", ["ESRI::Soap::MapServer::EsriQueryResultFormat", XSD::QName.new(nil, "Format")]],
|
807
|
+
["formatProperties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "FormatProperties")], [0, 1]],
|
808
|
+
["geoTransformation", ["ESRI::Soap::MapServer::GeoTransformation", XSD::QName.new(nil, "GeoTransformation")], [0, 1]]
|
809
|
+
]
|
810
|
+
)
|
811
|
+
|
812
|
+
EncodedRegistry.register(
|
813
|
+
:class => ESRI::Soap::MapServer::QueryResult,
|
814
|
+
:schema_type => XSD::QName.new(NsC_93, "QueryResult"),
|
815
|
+
:schema_element => [
|
816
|
+
["mimeData", ["SOAP::SOAPBase64", XSD::QName.new(nil, "MimeData")], [0, 1]],
|
817
|
+
["uRL", ["SOAP::SOAPString", XSD::QName.new(nil, "URL")]],
|
818
|
+
["object", [nil, XSD::QName.new(nil, "Object")]]
|
819
|
+
]
|
820
|
+
)
|
821
|
+
|
822
|
+
EncodedRegistry.register(
|
823
|
+
:class => ESRI::Soap::MapServer::GrayColor,
|
824
|
+
:schema_type => XSD::QName.new(NsC_93, "GrayColor"),
|
825
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
826
|
+
:schema_element => [
|
827
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
828
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
829
|
+
["grayLevel", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "GrayLevel")]]
|
830
|
+
]
|
831
|
+
)
|
832
|
+
|
833
|
+
EncodedRegistry.register(
|
834
|
+
:class => ESRI::Soap::MapServer::RgbColor,
|
835
|
+
:schema_type => XSD::QName.new(NsC_93, "RgbColor"),
|
836
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
837
|
+
:schema_element => [
|
838
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
839
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
840
|
+
["red", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Red")]],
|
841
|
+
["green", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Green")]],
|
842
|
+
["blue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Blue")]]
|
843
|
+
]
|
844
|
+
)
|
845
|
+
|
846
|
+
EncodedRegistry.register(
|
847
|
+
:class => ESRI::Soap::MapServer::CmykColor,
|
848
|
+
:schema_type => XSD::QName.new(NsC_93, "CmykColor"),
|
849
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
850
|
+
:schema_element => [
|
851
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
852
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
853
|
+
["cyan", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Cyan")]],
|
854
|
+
["magenta", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Magenta")]],
|
855
|
+
["yellow", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Yellow")]],
|
856
|
+
["black", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Black")]],
|
857
|
+
["overprint", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Overprint")]],
|
858
|
+
["isSpot", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsSpot")]],
|
859
|
+
["spotDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "SpotDescription")]],
|
860
|
+
["spotPercent", ["SOAP::SOAPShort", XSD::QName.new(nil, "SpotPercent")]]
|
861
|
+
]
|
862
|
+
)
|
863
|
+
|
864
|
+
EncodedRegistry.register(
|
865
|
+
:class => ESRI::Soap::MapServer::HlsColor,
|
866
|
+
:schema_type => XSD::QName.new(NsC_93, "HlsColor"),
|
867
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
868
|
+
:schema_element => [
|
869
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
870
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
871
|
+
["hue", ["SOAP::SOAPShort", XSD::QName.new(nil, "Hue")]],
|
872
|
+
["lightness", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Lightness")]],
|
873
|
+
["saturation", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Saturation")]]
|
874
|
+
]
|
875
|
+
)
|
876
|
+
|
877
|
+
EncodedRegistry.register(
|
878
|
+
:class => ESRI::Soap::MapServer::HsvColor,
|
879
|
+
:schema_type => XSD::QName.new(NsC_93, "HsvColor"),
|
880
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
881
|
+
:schema_element => [
|
882
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
883
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
884
|
+
["hue", ["SOAP::SOAPShort", XSD::QName.new(nil, "Hue")]],
|
885
|
+
["saturation", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Saturation")]],
|
886
|
+
["value", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Value")]]
|
887
|
+
]
|
888
|
+
)
|
889
|
+
|
890
|
+
EncodedRegistry.register(
|
891
|
+
:class => ESRI::Soap::MapServer::SimpleFillSymbol,
|
892
|
+
:schema_type => XSD::QName.new(NsC_93, "SimpleFillSymbol"),
|
893
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FillSymbol"),
|
894
|
+
:schema_element => [
|
895
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
896
|
+
["outline", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Outline")], [0, 1]],
|
897
|
+
["style", ["ESRI::Soap::MapServer::EsriSimpleFillStyle", XSD::QName.new(nil, "Style")]]
|
898
|
+
]
|
899
|
+
)
|
900
|
+
|
901
|
+
EncodedRegistry.register(
|
902
|
+
:class => ESRI::Soap::MapServer::SimpleLineSymbol,
|
903
|
+
:schema_type => XSD::QName.new(NsC_93, "SimpleLineSymbol"),
|
904
|
+
:schema_basetype => XSD::QName.new(NsC_93, "LineSymbol"),
|
905
|
+
:schema_element => [
|
906
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
907
|
+
["width", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Width")]],
|
908
|
+
["style", ["ESRI::Soap::MapServer::EsriSimpleLineStyle", XSD::QName.new(nil, "Style")]]
|
909
|
+
]
|
910
|
+
)
|
911
|
+
|
912
|
+
EncodedRegistry.register(
|
913
|
+
:class => ESRI::Soap::MapServer::SimpleMarkerSymbol,
|
914
|
+
:schema_type => XSD::QName.new(NsC_93, "SimpleMarkerSymbol"),
|
915
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MarkerSymbol"),
|
916
|
+
:schema_element => [
|
917
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
918
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
919
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
920
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
921
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
922
|
+
["outline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Outline")]],
|
923
|
+
["outlineSize", ["SOAP::SOAPDouble", XSD::QName.new(nil, "OutlineSize")]],
|
924
|
+
["outlineColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "OutlineColor")]],
|
925
|
+
["style", ["ESRI::Soap::MapServer::EsriSimpleMarkerStyle", XSD::QName.new(nil, "Style")]]
|
926
|
+
]
|
927
|
+
)
|
928
|
+
|
929
|
+
EncodedRegistry.register(
|
930
|
+
:class => ESRI::Soap::MapServer::TextSymbol,
|
931
|
+
:schema_type => XSD::QName.new(NsC_93, "TextSymbol"),
|
932
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Symbol"),
|
933
|
+
:schema_element => [
|
934
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
935
|
+
["breakCharIndex", ["SOAP::SOAPInt", XSD::QName.new(nil, "BreakCharIndex")]],
|
936
|
+
["verticalAlignment", ["ESRI::Soap::MapServer::EsriTextVerticalAlignment", XSD::QName.new(nil, "VerticalAlignment")]],
|
937
|
+
["horizontalAlignment", ["ESRI::Soap::MapServer::EsriTextHorizontalAlignment", XSD::QName.new(nil, "HorizontalAlignment")]],
|
938
|
+
["clip", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Clip")]],
|
939
|
+
["rightToLeft", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "RightToLeft")]],
|
940
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
941
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
942
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
943
|
+
["shadowColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "ShadowColor")], [0, 1]],
|
944
|
+
["shadowXOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ShadowXOffset")]],
|
945
|
+
["shadowYOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ShadowYOffset")]],
|
946
|
+
["textPosition", ["ESRI::Soap::MapServer::EsriTextPosition", XSD::QName.new(nil, "TextPosition")]],
|
947
|
+
["textCase", ["ESRI::Soap::MapServer::EsriTextCase", XSD::QName.new(nil, "TextCase")]],
|
948
|
+
["characterSpacing", ["SOAP::SOAPDouble", XSD::QName.new(nil, "CharacterSpacing")]],
|
949
|
+
["characterWidth", ["SOAP::SOAPDouble", XSD::QName.new(nil, "CharacterWidth")]],
|
950
|
+
["wordSpacing", ["SOAP::SOAPDouble", XSD::QName.new(nil, "WordSpacing")]],
|
951
|
+
["kerning", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Kerning")]],
|
952
|
+
["leading", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Leading")]],
|
953
|
+
["textDirection", ["ESRI::Soap::MapServer::EsriTextDirection", XSD::QName.new(nil, "TextDirection")]],
|
954
|
+
["flipAngle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "FlipAngle")]],
|
955
|
+
["typeSetting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "TypeSetting")]],
|
956
|
+
["textPathClass", ["SOAP::SOAPString", XSD::QName.new(nil, "TextPathClass")], [0, 1]],
|
957
|
+
["fillSymbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "FillSymbol")], [0, 1]],
|
958
|
+
["text", ["SOAP::SOAPString", XSD::QName.new(nil, "Text")]],
|
959
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
960
|
+
["maskStyle", ["ESRI::Soap::MapServer::EsriMaskStyle", XSD::QName.new(nil, "MaskStyle")]],
|
961
|
+
["maskSize", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaskSize")]],
|
962
|
+
["maskSymbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "MaskSymbol")], [0, 1]],
|
963
|
+
["fontName", ["SOAP::SOAPString", XSD::QName.new(nil, "FontName")], [0, 1]],
|
964
|
+
["fontItalic", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontItalic")], [0, 1]],
|
965
|
+
["fontUnderline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontUnderline")], [0, 1]],
|
966
|
+
["fontStrikethrough", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontStrikethrough")], [0, 1]],
|
967
|
+
["fontWeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontWeight")], [0, 1]],
|
968
|
+
["fontCharset", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontCharset")], [0, 1]],
|
969
|
+
["fontSizeHi", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeHi")], [0, 1]],
|
970
|
+
["fontSizeLo", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeLo")], [0, 1]],
|
971
|
+
["textParserClass", ["SOAP::SOAPString", XSD::QName.new(nil, "TextParserClass")], [0, 1]]
|
972
|
+
]
|
973
|
+
)
|
974
|
+
|
975
|
+
EncodedRegistry.register(
|
976
|
+
:class => ESRI::Soap::MapServer::CharacterMarkerSymbol,
|
977
|
+
:schema_type => XSD::QName.new(NsC_93, "CharacterMarkerSymbol"),
|
978
|
+
:schema_basetype => XSD::QName.new(NsC_93, "CartographicMarkerSymbol"),
|
979
|
+
:schema_element => [
|
980
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
981
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
982
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
983
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
984
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
985
|
+
["xScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XScale")]],
|
986
|
+
["yScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YScale")]],
|
987
|
+
["characterIndex", ["SOAP::SOAPInt", XSD::QName.new(nil, "CharacterIndex")]],
|
988
|
+
["fontName", ["SOAP::SOAPString", XSD::QName.new(nil, "FontName")], [0, 1]],
|
989
|
+
["fontItalic", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontItalic")], [0, 1]],
|
990
|
+
["fontUnderline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontUnderline")], [0, 1]],
|
991
|
+
["fontStrikethrough", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontStrikethrough")], [0, 1]],
|
992
|
+
["fontWeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontWeight")], [0, 1]],
|
993
|
+
["fontCharset", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontCharset")], [0, 1]],
|
994
|
+
["fontSizeHi", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeHi")], [0, 1]],
|
995
|
+
["fontSizeLo", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeLo")], [0, 1]]
|
996
|
+
]
|
997
|
+
)
|
998
|
+
|
999
|
+
EncodedRegistry.register(
|
1000
|
+
:class => ESRI::Soap::MapServer::PictureMarkerSymbol,
|
1001
|
+
:schema_type => XSD::QName.new(NsC_93, "PictureMarkerSymbol"),
|
1002
|
+
:schema_basetype => XSD::QName.new(NsC_93, "CartographicMarkerSymbol"),
|
1003
|
+
:schema_element => [
|
1004
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
1005
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
1006
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
1007
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
1008
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
1009
|
+
["xScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XScale")]],
|
1010
|
+
["yScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YScale")]],
|
1011
|
+
["bgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BgColor")], [0, 1]],
|
1012
|
+
["bitmapTransColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BitmapTransColor")], [0, 1]],
|
1013
|
+
["picture", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Picture")], [0, 1]],
|
1014
|
+
["fgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "FgColor")], [0, 1]],
|
1015
|
+
["swap1BitColor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Swap1BitColor")], [0, 1]]
|
1016
|
+
]
|
1017
|
+
)
|
1018
|
+
|
1019
|
+
EncodedRegistry.register(
|
1020
|
+
:class => ESRI::Soap::MapServer::PictureFillSymbol,
|
1021
|
+
:schema_type => XSD::QName.new(NsC_93, "PictureFillSymbol"),
|
1022
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FillSymbol"),
|
1023
|
+
:schema_element => [
|
1024
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
1025
|
+
["outline", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Outline")], [0, 1]],
|
1026
|
+
["picture", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Picture")]],
|
1027
|
+
["bgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BgColor")], [0, 1]],
|
1028
|
+
["fgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "FgColor")], [0, 1]],
|
1029
|
+
["bitmapTransColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BitmapTransColor")], [0, 1]],
|
1030
|
+
["xSeparation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XSeparation")], [0, 1]],
|
1031
|
+
["ySeparation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YSeparation")], [0, 1]],
|
1032
|
+
["swap1BitColor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Swap1BitColor")], [0, 1]],
|
1033
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")], [0, 1]],
|
1034
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")], [0, 1]],
|
1035
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")], [0, 1]],
|
1036
|
+
["xScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XScale")], [0, 1]],
|
1037
|
+
["yScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YScale")], [0, 1]]
|
1038
|
+
]
|
1039
|
+
)
|
1040
|
+
|
1041
|
+
EncodedRegistry.register(
|
1042
|
+
:class => ESRI::Soap::MapServer::XMLBinarySymbol,
|
1043
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLBinarySymbol"),
|
1044
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Symbol"),
|
1045
|
+
:schema_element => [
|
1046
|
+
["data", ["ESRI::Soap::MapServer::XMLPersistedObject", XSD::QName.new(nil, "Data")]]
|
1047
|
+
]
|
1048
|
+
)
|
1049
|
+
|
1050
|
+
EncodedRegistry.register(
|
1051
|
+
:class => ESRI::Soap::MapServer::XMLBinaryFillSymbol,
|
1052
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLBinaryFillSymbol"),
|
1053
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FillSymbol"),
|
1054
|
+
:schema_element => [
|
1055
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
1056
|
+
["outline", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Outline")], [0, 1]],
|
1057
|
+
["data", ["ESRI::Soap::MapServer::XMLPersistedObject", XSD::QName.new(nil, "Data")]]
|
1058
|
+
]
|
1059
|
+
)
|
1060
|
+
|
1061
|
+
EncodedRegistry.register(
|
1062
|
+
:class => ESRI::Soap::MapServer::GeometryDef,
|
1063
|
+
:schema_type => XSD::QName.new(NsC_93, "GeometryDef"),
|
1064
|
+
:schema_element => [
|
1065
|
+
["avgNumPoints", ["SOAP::SOAPInt", XSD::QName.new(nil, "AvgNumPoints")]],
|
1066
|
+
["geometryType", ["ESRI::Soap::MapServer::EsriGeometryType", XSD::QName.new(nil, "GeometryType")]],
|
1067
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
1068
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
1069
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")]],
|
1070
|
+
["gridSize0", ["SOAP::SOAPDouble", XSD::QName.new(nil, "GridSize0")], [0, 1]],
|
1071
|
+
["gridSize1", ["SOAP::SOAPDouble", XSD::QName.new(nil, "GridSize1")], [0, 1]],
|
1072
|
+
["gridSize2", ["SOAP::SOAPDouble", XSD::QName.new(nil, "GridSize2")], [0, 1]]
|
1073
|
+
]
|
1074
|
+
)
|
1075
|
+
|
1076
|
+
EncodedRegistry.register(
|
1077
|
+
:class => ESRI::Soap::MapServer::Field,
|
1078
|
+
:schema_type => XSD::QName.new(NsC_93, "Field"),
|
1079
|
+
:schema_element => [
|
1080
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
1081
|
+
["type", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "Type")]],
|
1082
|
+
["isNullable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsNullable")]],
|
1083
|
+
["length", ["SOAP::SOAPInt", XSD::QName.new(nil, "Length")]],
|
1084
|
+
["precision", ["SOAP::SOAPInt", XSD::QName.new(nil, "Precision")]],
|
1085
|
+
["scale", ["SOAP::SOAPInt", XSD::QName.new(nil, "Scale")]],
|
1086
|
+
["required", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Required")], [0, 1]],
|
1087
|
+
["editable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Editable")], [0, 1]],
|
1088
|
+
["domainFixed", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DomainFixed")], [0, 1]],
|
1089
|
+
["geometryDef", ["ESRI::Soap::MapServer::GeometryDef", XSD::QName.new(nil, "GeometryDef")], [0, 1]],
|
1090
|
+
["aliasName", ["SOAP::SOAPString", XSD::QName.new(nil, "AliasName")], [0, 1]],
|
1091
|
+
["modelName", ["SOAP::SOAPString", XSD::QName.new(nil, "ModelName")], [0, 1]],
|
1092
|
+
["defaultValue", [nil, XSD::QName.new(nil, "DefaultValue")], [0, 1]],
|
1093
|
+
["domain", ["ESRI::Soap::MapServer::Domain", XSD::QName.new(nil, "Domain")], [0, 1]],
|
1094
|
+
["rasterDef", ["ESRI::Soap::MapServer::RasterDef", XSD::QName.new(nil, "RasterDef")], [0, 1]]
|
1095
|
+
]
|
1096
|
+
)
|
1097
|
+
|
1098
|
+
EncodedRegistry.register(
|
1099
|
+
:class => ESRI::Soap::MapServer::ArrayOfField,
|
1100
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfField"),
|
1101
|
+
:schema_element => [
|
1102
|
+
["field", ["ESRI::Soap::MapServer::Field[]", XSD::QName.new(nil, "Field")], [0, nil]]
|
1103
|
+
]
|
1104
|
+
)
|
1105
|
+
|
1106
|
+
EncodedRegistry.register(
|
1107
|
+
:class => ESRI::Soap::MapServer::Fields,
|
1108
|
+
:schema_type => XSD::QName.new(NsC_93, "Fields"),
|
1109
|
+
:schema_element => [
|
1110
|
+
["fieldArray", ["ESRI::Soap::MapServer::ArrayOfField", XSD::QName.new(nil, "FieldArray")]]
|
1111
|
+
]
|
1112
|
+
)
|
1113
|
+
|
1114
|
+
EncodedRegistry.register(
|
1115
|
+
:class => ESRI::Soap::MapServer::ArrayOfValue,
|
1116
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfValue"),
|
1117
|
+
:schema_element => [
|
1118
|
+
["value", ["[]", XSD::QName.new(nil, "Value")], [0, nil]]
|
1119
|
+
]
|
1120
|
+
)
|
1121
|
+
|
1122
|
+
EncodedRegistry.register(
|
1123
|
+
:class => ESRI::Soap::MapServer::Record,
|
1124
|
+
:schema_type => XSD::QName.new(NsC_93, "Record"),
|
1125
|
+
:schema_element => [
|
1126
|
+
["values", ["ESRI::Soap::MapServer::ArrayOfValue", XSD::QName.new(nil, "Values")]]
|
1127
|
+
]
|
1128
|
+
)
|
1129
|
+
|
1130
|
+
EncodedRegistry.register(
|
1131
|
+
:class => ESRI::Soap::MapServer::ArrayOfRecord,
|
1132
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfRecord"),
|
1133
|
+
:schema_element => [
|
1134
|
+
["record", ["ESRI::Soap::MapServer::Record[]", XSD::QName.new(nil, "Record")], [0, nil]]
|
1135
|
+
]
|
1136
|
+
)
|
1137
|
+
|
1138
|
+
EncodedRegistry.register(
|
1139
|
+
:class => ESRI::Soap::MapServer::RecordSet,
|
1140
|
+
:schema_type => XSD::QName.new(NsC_93, "RecordSet"),
|
1141
|
+
:schema_element => [
|
1142
|
+
["fields", ["ESRI::Soap::MapServer::Fields", XSD::QName.new(nil, "Fields")]],
|
1143
|
+
["records", ["ESRI::Soap::MapServer::ArrayOfRecord", XSD::QName.new(nil, "Records")]]
|
1144
|
+
]
|
1145
|
+
)
|
1146
|
+
|
1147
|
+
EncodedRegistry.register(
|
1148
|
+
:class => ESRI::Soap::MapServer::FIDSet,
|
1149
|
+
:schema_type => XSD::QName.new(NsC_93, "FIDSet"),
|
1150
|
+
:schema_element => [
|
1151
|
+
["fIDArray", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "FIDArray")]]
|
1152
|
+
]
|
1153
|
+
)
|
1154
|
+
|
1155
|
+
EncodedRegistry.register(
|
1156
|
+
:class => ESRI::Soap::MapServer::QueryFilter,
|
1157
|
+
:schema_type => XSD::QName.new(NsC_93, "QueryFilter"),
|
1158
|
+
:schema_element => [
|
1159
|
+
["subFields", ["SOAP::SOAPString", XSD::QName.new(nil, "SubFields")], [0, 1]],
|
1160
|
+
["whereClause", ["SOAP::SOAPString", XSD::QName.new(nil, "WhereClause")]],
|
1161
|
+
["spatialReferenceFieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "SpatialReferenceFieldName")], [0, 1]],
|
1162
|
+
["resolution", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Resolution")]],
|
1163
|
+
["outputSpatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "OutputSpatialReference")], [0, 1]],
|
1164
|
+
["fIDSet", ["ESRI::Soap::MapServer::FIDSet", XSD::QName.new(nil, "FIDSet")], [0, 1]],
|
1165
|
+
["postfixClause", ["SOAP::SOAPString", XSD::QName.new(nil, "PostfixClause")], [0, 1]],
|
1166
|
+
["filterDefs", ["ESRI::Soap::MapServer::ArrayOfFilterDef", XSD::QName.new(nil, "FilterDefs")], [0, 1]]
|
1167
|
+
]
|
1168
|
+
)
|
1169
|
+
|
1170
|
+
EncodedRegistry.register(
|
1171
|
+
:class => ESRI::Soap::MapServer::SpatialFilter,
|
1172
|
+
:schema_type => XSD::QName.new(NsC_93, "SpatialFilter"),
|
1173
|
+
:schema_basetype => XSD::QName.new(NsC_93, "QueryFilter"),
|
1174
|
+
:schema_element => [
|
1175
|
+
["subFields", ["SOAP::SOAPString", XSD::QName.new(nil, "SubFields")], [0, 1]],
|
1176
|
+
["whereClause", ["SOAP::SOAPString", XSD::QName.new(nil, "WhereClause")]],
|
1177
|
+
["spatialReferenceFieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "SpatialReferenceFieldName")], [0, 1]],
|
1178
|
+
["resolution", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Resolution")]],
|
1179
|
+
["outputSpatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "OutputSpatialReference")], [0, 1]],
|
1180
|
+
["fIDSet", ["ESRI::Soap::MapServer::FIDSet", XSD::QName.new(nil, "FIDSet")], [0, 1]],
|
1181
|
+
["postfixClause", ["SOAP::SOAPString", XSD::QName.new(nil, "PostfixClause")], [0, 1]],
|
1182
|
+
["filterDefs", ["ESRI::Soap::MapServer::ArrayOfFilterDef", XSD::QName.new(nil, "FilterDefs")], [0, 1]],
|
1183
|
+
["searchOrder", ["ESRI::Soap::MapServer::EsriSearchOrder", XSD::QName.new(nil, "SearchOrder")]],
|
1184
|
+
["spatialRel", ["ESRI::Soap::MapServer::EsriSpatialRelEnum", XSD::QName.new(nil, "SpatialRel")]],
|
1185
|
+
["spatialRelDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "SpatialRelDescription")]],
|
1186
|
+
["filterGeometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "FilterGeometry")]],
|
1187
|
+
["geometryFieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "GeometryFieldName")]],
|
1188
|
+
["filterOwnsGeometry", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FilterOwnsGeometry")]]
|
1189
|
+
]
|
1190
|
+
)
|
1191
|
+
|
1192
|
+
EncodedRegistry.register(
|
1193
|
+
:class => ESRI::Soap::MapServer::XMLFilterDef,
|
1194
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLFilterDef"),
|
1195
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FilterDef"),
|
1196
|
+
:schema_element => [
|
1197
|
+
["fieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "FieldName")]],
|
1198
|
+
["expression", ["SOAP::SOAPString", XSD::QName.new(nil, "Expression")]]
|
1199
|
+
]
|
1200
|
+
)
|
1201
|
+
|
1202
|
+
EncodedRegistry.register(
|
1203
|
+
:class => ESRI::Soap::MapServer::ArrayOfFilterDef,
|
1204
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfFilterDef"),
|
1205
|
+
:schema_element => [
|
1206
|
+
["filterDef", ["ESRI::Soap::MapServer::FilterDef[]", XSD::QName.new(nil, "FilterDef")], [0, nil]]
|
1207
|
+
]
|
1208
|
+
)
|
1209
|
+
|
1210
|
+
EncodedRegistry.register(
|
1211
|
+
:class => ESRI::Soap::MapServer::RangeDomain,
|
1212
|
+
:schema_type => XSD::QName.new(NsC_93, "RangeDomain"),
|
1213
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Domain"),
|
1214
|
+
:schema_element => [
|
1215
|
+
["domainName", ["SOAP::SOAPString", XSD::QName.new(nil, "DomainName")]],
|
1216
|
+
["fieldType", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "FieldType")]],
|
1217
|
+
["mergePolicy", ["ESRI::Soap::MapServer::EsriMergePolicyType", XSD::QName.new(nil, "MergePolicy")]],
|
1218
|
+
["splitPolicy", ["ESRI::Soap::MapServer::EsriSplitPolicyType", XSD::QName.new(nil, "SplitPolicy")]],
|
1219
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
1220
|
+
["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "Owner")], [0, 1]],
|
1221
|
+
["maxValue", [nil, XSD::QName.new(nil, "MaxValue")]],
|
1222
|
+
["minValue", [nil, XSD::QName.new(nil, "MinValue")]]
|
1223
|
+
]
|
1224
|
+
)
|
1225
|
+
|
1226
|
+
EncodedRegistry.register(
|
1227
|
+
:class => ESRI::Soap::MapServer::CodedValue,
|
1228
|
+
:schema_type => XSD::QName.new(NsC_93, "CodedValue"),
|
1229
|
+
:schema_element => [
|
1230
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
1231
|
+
["code", [nil, XSD::QName.new(nil, "Code")]]
|
1232
|
+
]
|
1233
|
+
)
|
1234
|
+
|
1235
|
+
EncodedRegistry.register(
|
1236
|
+
:class => ESRI::Soap::MapServer::ArrayOfCodedValue,
|
1237
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfCodedValue"),
|
1238
|
+
:schema_element => [
|
1239
|
+
["codedValue", ["ESRI::Soap::MapServer::CodedValue[]", XSD::QName.new(nil, "CodedValue")], [0, nil]]
|
1240
|
+
]
|
1241
|
+
)
|
1242
|
+
|
1243
|
+
EncodedRegistry.register(
|
1244
|
+
:class => ESRI::Soap::MapServer::CodedValueDomain,
|
1245
|
+
:schema_type => XSD::QName.new(NsC_93, "CodedValueDomain"),
|
1246
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Domain"),
|
1247
|
+
:schema_element => [
|
1248
|
+
["domainName", ["SOAP::SOAPString", XSD::QName.new(nil, "DomainName")]],
|
1249
|
+
["fieldType", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "FieldType")]],
|
1250
|
+
["mergePolicy", ["ESRI::Soap::MapServer::EsriMergePolicyType", XSD::QName.new(nil, "MergePolicy")]],
|
1251
|
+
["splitPolicy", ["ESRI::Soap::MapServer::EsriSplitPolicyType", XSD::QName.new(nil, "SplitPolicy")]],
|
1252
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
1253
|
+
["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "Owner")], [0, 1]],
|
1254
|
+
["codedValues", ["ESRI::Soap::MapServer::ArrayOfCodedValue", XSD::QName.new(nil, "CodedValues")]]
|
1255
|
+
]
|
1256
|
+
)
|
1257
|
+
|
1258
|
+
EncodedRegistry.register(
|
1259
|
+
:class => ESRI::Soap::MapServer::BitMaskCodedValueDomain,
|
1260
|
+
:schema_type => XSD::QName.new(NsC_93, "BitMaskCodedValueDomain"),
|
1261
|
+
:schema_basetype => XSD::QName.new(NsC_93, "CodedValueDomain"),
|
1262
|
+
:schema_element => [
|
1263
|
+
["domainName", ["SOAP::SOAPString", XSD::QName.new(nil, "DomainName")]],
|
1264
|
+
["fieldType", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "FieldType")]],
|
1265
|
+
["mergePolicy", ["ESRI::Soap::MapServer::EsriMergePolicyType", XSD::QName.new(nil, "MergePolicy")]],
|
1266
|
+
["splitPolicy", ["ESRI::Soap::MapServer::EsriSplitPolicyType", XSD::QName.new(nil, "SplitPolicy")]],
|
1267
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
1268
|
+
["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "Owner")], [0, 1]],
|
1269
|
+
["codedValues", ["ESRI::Soap::MapServer::ArrayOfCodedValue", XSD::QName.new(nil, "CodedValues")]]
|
1270
|
+
]
|
1271
|
+
)
|
1272
|
+
|
1273
|
+
EncodedRegistry.register(
|
1274
|
+
:class => ESRI::Soap::MapServer::RasterDef,
|
1275
|
+
:schema_type => XSD::QName.new(NsC_93, "RasterDef"),
|
1276
|
+
:schema_element => [
|
1277
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
1278
|
+
["isByRef", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsByRef")], [0, 1]],
|
1279
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
1280
|
+
]
|
1281
|
+
)
|
1282
|
+
|
1283
|
+
EncodedRegistry.register(
|
1284
|
+
:class => ESRI::Soap::MapServer::GeometryResultOptions,
|
1285
|
+
:schema_type => XSD::QName.new(NsC_93, "GeometryResultOptions"),
|
1286
|
+
:schema_element => [
|
1287
|
+
["densifyGeometries", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DensifyGeometries")], [0, 1]],
|
1288
|
+
["maximumSegmentLength", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaximumSegmentLength")], [0, 1]],
|
1289
|
+
["maximumDeviation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaximumDeviation")], [0, 1]],
|
1290
|
+
["generalizeGeometries", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "GeneralizeGeometries")], [0, 1]],
|
1291
|
+
["maximumAllowableOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaximumAllowableOffset")], [0, 1]]
|
1292
|
+
]
|
1293
|
+
)
|
1294
|
+
|
1295
|
+
EncodedRegistry.register(
|
1296
|
+
:class => ESRI::Soap::MapServer::PropertySetProperty,
|
1297
|
+
:schema_type => XSD::QName.new(NsC_93, "PropertySetProperty"),
|
1298
|
+
:schema_element => [
|
1299
|
+
["key", ["SOAP::SOAPString", XSD::QName.new(nil, "Key")]],
|
1300
|
+
["value", [nil, XSD::QName.new(nil, "Value")], [0, 1]]
|
1301
|
+
]
|
1302
|
+
)
|
1303
|
+
|
1304
|
+
EncodedRegistry.register(
|
1305
|
+
:class => ESRI::Soap::MapServer::ArrayOfPropertySetProperty,
|
1306
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfPropertySetProperty"),
|
1307
|
+
:schema_element => [
|
1308
|
+
["propertySetProperty", ["ESRI::Soap::MapServer::PropertySetProperty[]", XSD::QName.new(nil, "PropertySetProperty")], [0, nil]]
|
1309
|
+
]
|
1310
|
+
)
|
1311
|
+
|
1312
|
+
EncodedRegistry.register(
|
1313
|
+
:class => ESRI::Soap::MapServer::PropertySet,
|
1314
|
+
:schema_type => XSD::QName.new(NsC_93, "PropertySet"),
|
1315
|
+
:schema_element => [
|
1316
|
+
["propertyArray", ["ESRI::Soap::MapServer::ArrayOfPropertySetProperty", XSD::QName.new(nil, "PropertyArray")]]
|
1317
|
+
]
|
1318
|
+
)
|
1319
|
+
|
1320
|
+
EncodedRegistry.register(
|
1321
|
+
:class => ESRI::Soap::MapServer::XMLPersistedObject,
|
1322
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLPersistedObject"),
|
1323
|
+
:schema_element => [
|
1324
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
1325
|
+
]
|
1326
|
+
)
|
1327
|
+
|
1328
|
+
EncodedRegistry.register(
|
1329
|
+
:class => ESRI::Soap::MapServer::NumericFormat,
|
1330
|
+
:schema_type => XSD::QName.new(NsC_93, "NumericFormat"),
|
1331
|
+
:schema_element => [
|
1332
|
+
["roundingOption", ["ESRI::Soap::MapServer::EsriRoundingOptionEnum", XSD::QName.new(nil, "RoundingOption")], [0, 1]],
|
1333
|
+
["roundingValue", ["SOAP::SOAPInt", XSD::QName.new(nil, "RoundingValue")], [0, 1]],
|
1334
|
+
["alignmentOption", ["ESRI::Soap::MapServer::EsriNumericAlignmentEnum", XSD::QName.new(nil, "AlignmentOption")], [0, 1]],
|
1335
|
+
["alignmentWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "AlignmentWidth")], [0, 1]],
|
1336
|
+
["useSeparator", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseSeparator")], [0, 1]],
|
1337
|
+
["zeroPad", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ZeroPad")], [0, 1]],
|
1338
|
+
["showPlus", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ShowPlus")], [0, 1]]
|
1339
|
+
]
|
1340
|
+
)
|
1341
|
+
|
1342
|
+
EncodedRegistry.register(
|
1343
|
+
:class => ESRI::Soap::MapServer::ArrayOfInt,
|
1344
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfInt"),
|
1345
|
+
:schema_element => [
|
1346
|
+
["int", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "Int")], [0, nil]]
|
1347
|
+
]
|
1348
|
+
)
|
1349
|
+
|
1350
|
+
EncodedRegistry.register(
|
1351
|
+
:class => ESRI::Soap::MapServer::ArrayOfString,
|
1352
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfString"),
|
1353
|
+
:schema_element => [
|
1354
|
+
["string", ["SOAP::SOAPString[]", XSD::QName.new(nil, "String")], [0, nil]]
|
1355
|
+
]
|
1356
|
+
)
|
1357
|
+
|
1358
|
+
EncodedRegistry.register(
|
1359
|
+
:class => ESRI::Soap::MapServer::GeoTransformation,
|
1360
|
+
:schema_type => XSD::QName.new(NsC_93, "GeoTransformation"),
|
1361
|
+
:schema_element => [
|
1362
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
1363
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
1364
|
+
]
|
1365
|
+
)
|
1366
|
+
|
1367
|
+
EncodedRegistry.register(
|
1368
|
+
:class => ESRI::Soap::MapServer::ProjectedCoordinateSystem,
|
1369
|
+
:schema_type => XSD::QName.new(NsC_93, "ProjectedCoordinateSystem"),
|
1370
|
+
:schema_basetype => XSD::QName.new(NsC_93, "SpatialReference"),
|
1371
|
+
:schema_element => [
|
1372
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
1373
|
+
["xOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOrigin")], [0, 1]],
|
1374
|
+
["yOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOrigin")], [0, 1]],
|
1375
|
+
["xYScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYScale")], [0, 1]],
|
1376
|
+
["zOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZOrigin")], [0, 1]],
|
1377
|
+
["zScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZScale")], [0, 1]],
|
1378
|
+
["mOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MOrigin")], [0, 1]],
|
1379
|
+
["mScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MScale")], [0, 1]],
|
1380
|
+
["xYTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYTolerance")], [0, 1]],
|
1381
|
+
["zTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZTolerance")], [0, 1]],
|
1382
|
+
["mTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MTolerance")], [0, 1]],
|
1383
|
+
["highPrecision", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HighPrecision")], [0, 1]],
|
1384
|
+
["leftLongitude", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LeftLongitude")], [0, 1]],
|
1385
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
1386
|
+
]
|
1387
|
+
)
|
1388
|
+
|
1389
|
+
EncodedRegistry.register(
|
1390
|
+
:class => ESRI::Soap::MapServer::GeographicCoordinateSystem,
|
1391
|
+
:schema_type => XSD::QName.new(NsC_93, "GeographicCoordinateSystem"),
|
1392
|
+
:schema_basetype => XSD::QName.new(NsC_93, "SpatialReference"),
|
1393
|
+
:schema_element => [
|
1394
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
1395
|
+
["xOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOrigin")], [0, 1]],
|
1396
|
+
["yOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOrigin")], [0, 1]],
|
1397
|
+
["xYScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYScale")], [0, 1]],
|
1398
|
+
["zOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZOrigin")], [0, 1]],
|
1399
|
+
["zScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZScale")], [0, 1]],
|
1400
|
+
["mOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MOrigin")], [0, 1]],
|
1401
|
+
["mScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MScale")], [0, 1]],
|
1402
|
+
["xYTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYTolerance")], [0, 1]],
|
1403
|
+
["zTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZTolerance")], [0, 1]],
|
1404
|
+
["mTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MTolerance")], [0, 1]],
|
1405
|
+
["highPrecision", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HighPrecision")], [0, 1]],
|
1406
|
+
["leftLongitude", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LeftLongitude")], [0, 1]],
|
1407
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
1408
|
+
]
|
1409
|
+
)
|
1410
|
+
|
1411
|
+
EncodedRegistry.register(
|
1412
|
+
:class => ESRI::Soap::MapServer::UnknownCoordinateSystem,
|
1413
|
+
:schema_type => XSD::QName.new(NsC_93, "UnknownCoordinateSystem"),
|
1414
|
+
:schema_basetype => XSD::QName.new(NsC_93, "SpatialReference"),
|
1415
|
+
:schema_element => [
|
1416
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
1417
|
+
["xOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOrigin")], [0, 1]],
|
1418
|
+
["yOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOrigin")], [0, 1]],
|
1419
|
+
["xYScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYScale")], [0, 1]],
|
1420
|
+
["zOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZOrigin")], [0, 1]],
|
1421
|
+
["zScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZScale")], [0, 1]],
|
1422
|
+
["mOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MOrigin")], [0, 1]],
|
1423
|
+
["mScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MScale")], [0, 1]],
|
1424
|
+
["xYTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYTolerance")], [0, 1]],
|
1425
|
+
["zTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZTolerance")], [0, 1]],
|
1426
|
+
["mTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MTolerance")], [0, 1]],
|
1427
|
+
["highPrecision", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HighPrecision")], [0, 1]],
|
1428
|
+
["leftLongitude", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LeftLongitude")], [0, 1]],
|
1429
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
1430
|
+
]
|
1431
|
+
)
|
1432
|
+
|
1433
|
+
EncodedRegistry.register(
|
1434
|
+
:class => ESRI::Soap::MapServer::Geometry,
|
1435
|
+
:schema_type => XSD::QName.new(NsC_93, "Geometry"),
|
1436
|
+
:schema_element => []
|
1437
|
+
)
|
1438
|
+
|
1439
|
+
EncodedRegistry.register(
|
1440
|
+
:class => ESRI::Soap::MapServer::EnvelopeN,
|
1441
|
+
:schema_type => XSD::QName.new(NsC_93, "EnvelopeN"),
|
1442
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Envelope"),
|
1443
|
+
:schema_element => [
|
1444
|
+
["xMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XMin")]],
|
1445
|
+
["yMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YMin")]],
|
1446
|
+
["xMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XMax")]],
|
1447
|
+
["yMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YMax")]],
|
1448
|
+
["zMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZMin")], [0, 1]],
|
1449
|
+
["zMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZMax")], [0, 1]],
|
1450
|
+
["mMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MMin")], [0, 1]],
|
1451
|
+
["mMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MMax")], [0, 1]],
|
1452
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
1453
|
+
]
|
1454
|
+
)
|
1455
|
+
|
1456
|
+
EncodedRegistry.register(
|
1457
|
+
:class => ESRI::Soap::MapServer::EnvelopeB,
|
1458
|
+
:schema_type => XSD::QName.new(NsC_93, "EnvelopeB"),
|
1459
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Envelope"),
|
1460
|
+
:schema_element => [
|
1461
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
1462
|
+
]
|
1463
|
+
)
|
1464
|
+
|
1465
|
+
EncodedRegistry.register(
|
1466
|
+
:class => ESRI::Soap::MapServer::PointN,
|
1467
|
+
:schema_type => XSD::QName.new(NsC_93, "PointN"),
|
1468
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Point"),
|
1469
|
+
:schema_element => [
|
1470
|
+
["x", ["SOAP::SOAPDouble", XSD::QName.new(nil, "X")]],
|
1471
|
+
["y", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Y")]],
|
1472
|
+
["m", ["SOAP::SOAPDouble", XSD::QName.new(nil, "M")], [0, 1]],
|
1473
|
+
["z", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Z")], [0, 1]],
|
1474
|
+
["iD", ["SOAP::SOAPInt", XSD::QName.new(nil, "ID")], [0, 1]],
|
1475
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
1476
|
+
]
|
1477
|
+
)
|
1478
|
+
|
1479
|
+
EncodedRegistry.register(
|
1480
|
+
:class => ESRI::Soap::MapServer::PointB,
|
1481
|
+
:schema_type => XSD::QName.new(NsC_93, "PointB"),
|
1482
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Point"),
|
1483
|
+
:schema_element => [
|
1484
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
1485
|
+
]
|
1486
|
+
)
|
1487
|
+
|
1488
|
+
EncodedRegistry.register(
|
1489
|
+
:class => ESRI::Soap::MapServer::MultipointB,
|
1490
|
+
:schema_type => XSD::QName.new(NsC_93, "MultipointB"),
|
1491
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Multipoint"),
|
1492
|
+
:schema_element => [
|
1493
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
1494
|
+
]
|
1495
|
+
)
|
1496
|
+
|
1497
|
+
EncodedRegistry.register(
|
1498
|
+
:class => ESRI::Soap::MapServer::MultipointN,
|
1499
|
+
:schema_type => XSD::QName.new(NsC_93, "MultipointN"),
|
1500
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Multipoint"),
|
1501
|
+
:schema_element => [
|
1502
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
1503
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
1504
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
1505
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
1506
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]],
|
1507
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
1508
|
+
]
|
1509
|
+
)
|
1510
|
+
|
1511
|
+
EncodedRegistry.register(
|
1512
|
+
:class => ESRI::Soap::MapServer::Line,
|
1513
|
+
:schema_type => XSD::QName.new(NsC_93, "Line"),
|
1514
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
1515
|
+
:schema_element => [
|
1516
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
1517
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]]
|
1518
|
+
]
|
1519
|
+
)
|
1520
|
+
|
1521
|
+
EncodedRegistry.register(
|
1522
|
+
:class => ESRI::Soap::MapServer::EllipticArc,
|
1523
|
+
:schema_type => XSD::QName.new(NsC_93, "EllipticArc"),
|
1524
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
1525
|
+
:schema_element => [
|
1526
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
1527
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]],
|
1528
|
+
["ellipseStd", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "EllipseStd")]],
|
1529
|
+
["centerPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "CenterPoint")]],
|
1530
|
+
["rotation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Rotation")]],
|
1531
|
+
["minorMajorRatio", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MinorMajorRatio")]],
|
1532
|
+
["isCounterClockWise", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsCounterClockWise")]],
|
1533
|
+
["isMinor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsMinor")]]
|
1534
|
+
]
|
1535
|
+
)
|
1536
|
+
|
1537
|
+
EncodedRegistry.register(
|
1538
|
+
:class => ESRI::Soap::MapServer::CircularArc,
|
1539
|
+
:schema_type => XSD::QName.new(NsC_93, "CircularArc"),
|
1540
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
1541
|
+
:schema_element => [
|
1542
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
1543
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]],
|
1544
|
+
["centerPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "CenterPoint")]],
|
1545
|
+
["fromAngle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "FromAngle")], [0, 1]],
|
1546
|
+
["toAngle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ToAngle")], [0, 1]],
|
1547
|
+
["isCounterClockwise", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsCounterClockwise")]],
|
1548
|
+
["isMinor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsMinor")]],
|
1549
|
+
["isLine", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsLine")]]
|
1550
|
+
]
|
1551
|
+
)
|
1552
|
+
|
1553
|
+
EncodedRegistry.register(
|
1554
|
+
:class => ESRI::Soap::MapServer::BezierCurve,
|
1555
|
+
:schema_type => XSD::QName.new(NsC_93, "BezierCurve"),
|
1556
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
1557
|
+
:schema_element => [
|
1558
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
1559
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]],
|
1560
|
+
["degree", ["SOAP::SOAPInt", XSD::QName.new(nil, "Degree")]],
|
1561
|
+
["controlPointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "ControlPointArray")]]
|
1562
|
+
]
|
1563
|
+
)
|
1564
|
+
|
1565
|
+
EncodedRegistry.register(
|
1566
|
+
:class => ESRI::Soap::MapServer::Path,
|
1567
|
+
:schema_type => XSD::QName.new(NsC_93, "Path"),
|
1568
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Curve"),
|
1569
|
+
:schema_element => [
|
1570
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]],
|
1571
|
+
["segmentArray", ["ESRI::Soap::MapServer::ArrayOfSegment", XSD::QName.new(nil, "SegmentArray")], [0, 1]]
|
1572
|
+
]
|
1573
|
+
)
|
1574
|
+
|
1575
|
+
EncodedRegistry.register(
|
1576
|
+
:class => ESRI::Soap::MapServer::Ring,
|
1577
|
+
:schema_type => XSD::QName.new(NsC_93, "Ring"),
|
1578
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Path"),
|
1579
|
+
:schema_element => [
|
1580
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]],
|
1581
|
+
["segmentArray", ["ESRI::Soap::MapServer::ArrayOfSegment", XSD::QName.new(nil, "SegmentArray")], [0, 1]]
|
1582
|
+
]
|
1583
|
+
)
|
1584
|
+
|
1585
|
+
EncodedRegistry.register(
|
1586
|
+
:class => ESRI::Soap::MapServer::PolygonN,
|
1587
|
+
:schema_type => XSD::QName.new(NsC_93, "PolygonN"),
|
1588
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polygon"),
|
1589
|
+
:schema_element => [
|
1590
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
1591
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
1592
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
1593
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
1594
|
+
["ringArray", ["ESRI::Soap::MapServer::ArrayOfRing", XSD::QName.new(nil, "RingArray")]],
|
1595
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
1596
|
+
]
|
1597
|
+
)
|
1598
|
+
|
1599
|
+
EncodedRegistry.register(
|
1600
|
+
:class => ESRI::Soap::MapServer::PolygonB,
|
1601
|
+
:schema_type => XSD::QName.new(NsC_93, "PolygonB"),
|
1602
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polygon"),
|
1603
|
+
:schema_element => [
|
1604
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
1605
|
+
]
|
1606
|
+
)
|
1607
|
+
|
1608
|
+
EncodedRegistry.register(
|
1609
|
+
:class => ESRI::Soap::MapServer::PolylineN,
|
1610
|
+
:schema_type => XSD::QName.new(NsC_93, "PolylineN"),
|
1611
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polyline"),
|
1612
|
+
:schema_element => [
|
1613
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
1614
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
1615
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
1616
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
1617
|
+
["pathArray", ["ESRI::Soap::MapServer::ArrayOfPath", XSD::QName.new(nil, "PathArray")]],
|
1618
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
1619
|
+
]
|
1620
|
+
)
|
1621
|
+
|
1622
|
+
EncodedRegistry.register(
|
1623
|
+
:class => ESRI::Soap::MapServer::PolylineB,
|
1624
|
+
:schema_type => XSD::QName.new(NsC_93, "PolylineB"),
|
1625
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polyline"),
|
1626
|
+
:schema_element => [
|
1627
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
1628
|
+
]
|
1629
|
+
)
|
1630
|
+
|
1631
|
+
EncodedRegistry.register(
|
1632
|
+
:class => ESRI::Soap::MapServer::ArrayOfPoint,
|
1633
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfPoint"),
|
1634
|
+
:schema_element => [
|
1635
|
+
["point", ["ESRI::Soap::MapServer::Point[]", XSD::QName.new(nil, "Point")], [0, nil]]
|
1636
|
+
]
|
1637
|
+
)
|
1638
|
+
|
1639
|
+
EncodedRegistry.register(
|
1640
|
+
:class => ESRI::Soap::MapServer::ArrayOfPath,
|
1641
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfPath"),
|
1642
|
+
:schema_element => [
|
1643
|
+
["path", ["ESRI::Soap::MapServer::Path[]", XSD::QName.new(nil, "Path")], [0, nil]]
|
1644
|
+
]
|
1645
|
+
)
|
1646
|
+
|
1647
|
+
EncodedRegistry.register(
|
1648
|
+
:class => ESRI::Soap::MapServer::ArrayOfRing,
|
1649
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfRing"),
|
1650
|
+
:schema_element => [
|
1651
|
+
["ring", ["ESRI::Soap::MapServer::Ring[]", XSD::QName.new(nil, "Ring")], [0, nil]]
|
1652
|
+
]
|
1653
|
+
)
|
1654
|
+
|
1655
|
+
EncodedRegistry.register(
|
1656
|
+
:class => ESRI::Soap::MapServer::ArrayOfSegment,
|
1657
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfSegment"),
|
1658
|
+
:schema_element => [
|
1659
|
+
["segment", ["ESRI::Soap::MapServer::Segment[]", XSD::QName.new(nil, "Segment")], [0, nil]]
|
1660
|
+
]
|
1661
|
+
)
|
1662
|
+
|
1663
|
+
EncodedRegistry.register(
|
1664
|
+
:class => ESRI::Soap::MapServer::MultiPatchB,
|
1665
|
+
:schema_type => XSD::QName.new(NsC_93, "MultiPatchB"),
|
1666
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MultiPatch"),
|
1667
|
+
:schema_element => [
|
1668
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
1669
|
+
]
|
1670
|
+
)
|
1671
|
+
|
1672
|
+
EncodedRegistry.register(
|
1673
|
+
:class => ESRI::Soap::MapServer::MultiPatchN,
|
1674
|
+
:schema_type => XSD::QName.new(NsC_93, "MultiPatchN"),
|
1675
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MultiPatch"),
|
1676
|
+
:schema_element => [
|
1677
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
1678
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
1679
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
1680
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")]],
|
1681
|
+
["surfacePatchArray", ["ESRI::Soap::MapServer::ArrayOfSurfacePatch", XSD::QName.new(nil, "SurfacePatchArray")]]
|
1682
|
+
]
|
1683
|
+
)
|
1684
|
+
|
1685
|
+
EncodedRegistry.register(
|
1686
|
+
:class => ESRI::Soap::MapServer::ArrayOfSurfacePatch,
|
1687
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfSurfacePatch"),
|
1688
|
+
:schema_element => [
|
1689
|
+
["surfacePatch", ["ESRI::Soap::MapServer::Geometry[]", XSD::QName.new(nil, "SurfacePatch")], [0, nil]]
|
1690
|
+
]
|
1691
|
+
)
|
1692
|
+
|
1693
|
+
EncodedRegistry.register(
|
1694
|
+
:class => ESRI::Soap::MapServer::TriangleFan,
|
1695
|
+
:schema_type => XSD::QName.new(NsC_93, "TriangleFan"),
|
1696
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Geometry"),
|
1697
|
+
:schema_element => [
|
1698
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]]
|
1699
|
+
]
|
1700
|
+
)
|
1701
|
+
|
1702
|
+
EncodedRegistry.register(
|
1703
|
+
:class => ESRI::Soap::MapServer::TriangleStrip,
|
1704
|
+
:schema_type => XSD::QName.new(NsC_93, "TriangleStrip"),
|
1705
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Geometry"),
|
1706
|
+
:schema_element => [
|
1707
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]]
|
1708
|
+
]
|
1709
|
+
)
|
1710
|
+
|
1711
|
+
EncodedRegistry.register(
|
1712
|
+
:class => ESRI::Soap::MapServer::EsriIdentifyOption,
|
1713
|
+
:schema_type => XSD::QName.new(NsC_93, "esriIdentifyOption")
|
1714
|
+
)
|
1715
|
+
|
1716
|
+
EncodedRegistry.register(
|
1717
|
+
:class => ESRI::Soap::MapServer::EsriFindOption,
|
1718
|
+
:schema_type => XSD::QName.new(NsC_93, "esriFindOption")
|
1719
|
+
)
|
1720
|
+
|
1721
|
+
EncodedRegistry.register(
|
1722
|
+
:class => ESRI::Soap::MapServer::EsriImageFormat,
|
1723
|
+
:schema_type => XSD::QName.new(NsC_93, "esriImageFormat")
|
1724
|
+
)
|
1725
|
+
|
1726
|
+
EncodedRegistry.register(
|
1727
|
+
:class => ESRI::Soap::MapServer::EsriScaleBarPos,
|
1728
|
+
:schema_type => XSD::QName.new(NsC_93, "esriScaleBarPos")
|
1729
|
+
)
|
1730
|
+
|
1731
|
+
EncodedRegistry.register(
|
1732
|
+
:class => ESRI::Soap::MapServer::EsriVertPosEnum,
|
1733
|
+
:schema_type => XSD::QName.new(NsC_93, "esriVertPosEnum")
|
1734
|
+
)
|
1735
|
+
|
1736
|
+
EncodedRegistry.register(
|
1737
|
+
:class => ESRI::Soap::MapServer::EsriScaleBarFrequency,
|
1738
|
+
:schema_type => XSD::QName.new(NsC_93, "esriScaleBarFrequency")
|
1739
|
+
)
|
1740
|
+
|
1741
|
+
EncodedRegistry.register(
|
1742
|
+
:class => ESRI::Soap::MapServer::EsriScaleBarResizeHint,
|
1743
|
+
:schema_type => XSD::QName.new(NsC_93, "esriScaleBarResizeHint")
|
1744
|
+
)
|
1745
|
+
|
1746
|
+
EncodedRegistry.register(
|
1747
|
+
:class => ESRI::Soap::MapServer::EsriImageReturnType,
|
1748
|
+
:schema_type => XSD::QName.new(NsC_93, "esriImageReturnType")
|
1749
|
+
)
|
1750
|
+
|
1751
|
+
EncodedRegistry.register(
|
1752
|
+
:class => ESRI::Soap::MapServer::EsriCachedMapServiceType,
|
1753
|
+
:schema_type => XSD::QName.new(NsC_93, "esriCachedMapServiceType")
|
1754
|
+
)
|
1755
|
+
|
1756
|
+
EncodedRegistry.register(
|
1757
|
+
:class => ESRI::Soap::MapServer::EsriQueryResultFormat,
|
1758
|
+
:schema_type => XSD::QName.new(NsC_93, "esriQueryResultFormat")
|
1759
|
+
)
|
1760
|
+
|
1761
|
+
EncodedRegistry.register(
|
1762
|
+
:class => ESRI::Soap::MapServer::EsriSimpleFillStyle,
|
1763
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSimpleFillStyle")
|
1764
|
+
)
|
1765
|
+
|
1766
|
+
EncodedRegistry.register(
|
1767
|
+
:class => ESRI::Soap::MapServer::EsriSimpleLineStyle,
|
1768
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSimpleLineStyle")
|
1769
|
+
)
|
1770
|
+
|
1771
|
+
EncodedRegistry.register(
|
1772
|
+
:class => ESRI::Soap::MapServer::EsriSimpleMarkerStyle,
|
1773
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSimpleMarkerStyle")
|
1774
|
+
)
|
1775
|
+
|
1776
|
+
EncodedRegistry.register(
|
1777
|
+
:class => ESRI::Soap::MapServer::EsriTextHorizontalAlignment,
|
1778
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextHorizontalAlignment")
|
1779
|
+
)
|
1780
|
+
|
1781
|
+
EncodedRegistry.register(
|
1782
|
+
:class => ESRI::Soap::MapServer::EsriTextVerticalAlignment,
|
1783
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextVerticalAlignment")
|
1784
|
+
)
|
1785
|
+
|
1786
|
+
EncodedRegistry.register(
|
1787
|
+
:class => ESRI::Soap::MapServer::EsriTextPosition,
|
1788
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextPosition")
|
1789
|
+
)
|
1790
|
+
|
1791
|
+
EncodedRegistry.register(
|
1792
|
+
:class => ESRI::Soap::MapServer::EsriTextCase,
|
1793
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextCase")
|
1794
|
+
)
|
1795
|
+
|
1796
|
+
EncodedRegistry.register(
|
1797
|
+
:class => ESRI::Soap::MapServer::EsriTextDirection,
|
1798
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextDirection")
|
1799
|
+
)
|
1800
|
+
|
1801
|
+
EncodedRegistry.register(
|
1802
|
+
:class => ESRI::Soap::MapServer::EsriMaskStyle,
|
1803
|
+
:schema_type => XSD::QName.new(NsC_93, "esriMaskStyle")
|
1804
|
+
)
|
1805
|
+
|
1806
|
+
EncodedRegistry.register(
|
1807
|
+
:class => ESRI::Soap::MapServer::EsriFieldType,
|
1808
|
+
:schema_type => XSD::QName.new(NsC_93, "esriFieldType")
|
1809
|
+
)
|
1810
|
+
|
1811
|
+
EncodedRegistry.register(
|
1812
|
+
:class => ESRI::Soap::MapServer::EsriMergePolicyType,
|
1813
|
+
:schema_type => XSD::QName.new(NsC_93, "esriMergePolicyType")
|
1814
|
+
)
|
1815
|
+
|
1816
|
+
EncodedRegistry.register(
|
1817
|
+
:class => ESRI::Soap::MapServer::EsriSplitPolicyType,
|
1818
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSplitPolicyType")
|
1819
|
+
)
|
1820
|
+
|
1821
|
+
EncodedRegistry.register(
|
1822
|
+
:class => ESRI::Soap::MapServer::EsriSearchOrder,
|
1823
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSearchOrder")
|
1824
|
+
)
|
1825
|
+
|
1826
|
+
EncodedRegistry.register(
|
1827
|
+
:class => ESRI::Soap::MapServer::EsriSpatialRelEnum,
|
1828
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSpatialRelEnum")
|
1829
|
+
)
|
1830
|
+
|
1831
|
+
EncodedRegistry.register(
|
1832
|
+
:class => ESRI::Soap::MapServer::EsriUnits,
|
1833
|
+
:schema_type => XSD::QName.new(NsC_93, "esriUnits")
|
1834
|
+
)
|
1835
|
+
|
1836
|
+
EncodedRegistry.register(
|
1837
|
+
:class => ESRI::Soap::MapServer::EsriRoundingOptionEnum,
|
1838
|
+
:schema_type => XSD::QName.new(NsC_93, "esriRoundingOptionEnum")
|
1839
|
+
)
|
1840
|
+
|
1841
|
+
EncodedRegistry.register(
|
1842
|
+
:class => ESRI::Soap::MapServer::EsriNumericAlignmentEnum,
|
1843
|
+
:schema_type => XSD::QName.new(NsC_93, "esriNumericAlignmentEnum")
|
1844
|
+
)
|
1845
|
+
|
1846
|
+
EncodedRegistry.register(
|
1847
|
+
:class => ESRI::Soap::MapServer::EsriGeometryType,
|
1848
|
+
:schema_type => XSD::QName.new(NsC_93, "esriGeometryType")
|
1849
|
+
)
|
1850
|
+
|
1851
|
+
LiteralRegistry.register(
|
1852
|
+
:class => ESRI::Soap::MapServer::TileCacheInfo,
|
1853
|
+
:schema_type => XSD::QName.new(NsC_93, "TileCacheInfo"),
|
1854
|
+
:schema_element => [
|
1855
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]],
|
1856
|
+
["tileOrigin", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "TileOrigin")], [0, 1]],
|
1857
|
+
["tileCols", ["SOAP::SOAPInt", XSD::QName.new(nil, "TileCols")]],
|
1858
|
+
["tileRows", ["SOAP::SOAPInt", XSD::QName.new(nil, "TileRows")]],
|
1859
|
+
["dPI", ["SOAP::SOAPInt", XSD::QName.new(nil, "DPI")]],
|
1860
|
+
["lODInfos", ["ESRI::Soap::MapServer::ArrayOfLODInfo", XSD::QName.new(nil, "LODInfos")], [0, 1]]
|
1861
|
+
]
|
1862
|
+
)
|
1863
|
+
|
1864
|
+
LiteralRegistry.register(
|
1865
|
+
:class => ESRI::Soap::MapServer::LODInfo,
|
1866
|
+
:schema_type => XSD::QName.new(NsC_93, "LODInfo"),
|
1867
|
+
:schema_element => [
|
1868
|
+
["levelID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LevelID")]],
|
1869
|
+
["scale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Scale")]],
|
1870
|
+
["resolution", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Resolution")]]
|
1871
|
+
]
|
1872
|
+
)
|
1873
|
+
|
1874
|
+
LiteralRegistry.register(
|
1875
|
+
:class => ESRI::Soap::MapServer::ArrayOfLODInfo,
|
1876
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfLODInfo"),
|
1877
|
+
:schema_element => [
|
1878
|
+
["lODInfo", ["ESRI::Soap::MapServer::LODInfo[]", XSD::QName.new(nil, "LODInfo")], [0, nil]]
|
1879
|
+
]
|
1880
|
+
)
|
1881
|
+
|
1882
|
+
LiteralRegistry.register(
|
1883
|
+
:class => ESRI::Soap::MapServer::AreaPatch,
|
1884
|
+
:schema_type => XSD::QName.new(NsC_93, "AreaPatch"),
|
1885
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Patch"),
|
1886
|
+
:schema_element => [
|
1887
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
1888
|
+
["preserveAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "PreserveAspectRatio")], [0, 1]],
|
1889
|
+
["geometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Geometry")], [0, 1]]
|
1890
|
+
]
|
1891
|
+
)
|
1892
|
+
|
1893
|
+
LiteralRegistry.register(
|
1894
|
+
:class => ESRI::Soap::MapServer::ArrayOfGraphicElement,
|
1895
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfGraphicElement"),
|
1896
|
+
:schema_element => [
|
1897
|
+
["graphicElement", ["ESRI::Soap::MapServer::GraphicElement[]", XSD::QName.new(nil, "GraphicElement")], [0, nil]]
|
1898
|
+
]
|
1899
|
+
)
|
1900
|
+
|
1901
|
+
LiteralRegistry.register(
|
1902
|
+
:class => ESRI::Soap::MapServer::ArrayOfLayerDescription,
|
1903
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfLayerDescription"),
|
1904
|
+
:schema_element => [
|
1905
|
+
["layerDescription", ["ESRI::Soap::MapServer::LayerDescription[]", XSD::QName.new(nil, "LayerDescription")], [0, nil]]
|
1906
|
+
]
|
1907
|
+
)
|
1908
|
+
|
1909
|
+
LiteralRegistry.register(
|
1910
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapLayerInfo,
|
1911
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapLayerInfo"),
|
1912
|
+
:schema_element => [
|
1913
|
+
["mapLayerInfo", ["ESRI::Soap::MapServer::MapLayerInfo[]", XSD::QName.new(nil, "MapLayerInfo")], [0, nil]]
|
1914
|
+
]
|
1915
|
+
)
|
1916
|
+
|
1917
|
+
LiteralRegistry.register(
|
1918
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerBookmark,
|
1919
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerBookmark"),
|
1920
|
+
:schema_element => [
|
1921
|
+
["mapServerBookmark", ["ESRI::Soap::MapServer::MapServerBookmark[]", XSD::QName.new(nil, "MapServerBookmark")], [0, nil]]
|
1922
|
+
]
|
1923
|
+
)
|
1924
|
+
|
1925
|
+
LiteralRegistry.register(
|
1926
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerFindResult,
|
1927
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerFindResult"),
|
1928
|
+
:schema_element => [
|
1929
|
+
["mapServerFindResult", ["ESRI::Soap::MapServer::MapServerFindResult[]", XSD::QName.new(nil, "MapServerFindResult")], [0, nil]]
|
1930
|
+
]
|
1931
|
+
)
|
1932
|
+
|
1933
|
+
LiteralRegistry.register(
|
1934
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerHyperlink,
|
1935
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerHyperlink"),
|
1936
|
+
:schema_element => [
|
1937
|
+
["mapServerHyperlink", ["ESRI::Soap::MapServer::MapServerHyperlink[]", XSD::QName.new(nil, "MapServerHyperlink")], [0, nil]]
|
1938
|
+
]
|
1939
|
+
)
|
1940
|
+
|
1941
|
+
LiteralRegistry.register(
|
1942
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerIdentifyResult,
|
1943
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerIdentifyResult"),
|
1944
|
+
:schema_element => [
|
1945
|
+
["mapServerIdentifyResult", ["ESRI::Soap::MapServer::MapServerIdentifyResult[]", XSD::QName.new(nil, "MapServerIdentifyResult")], [0, nil]]
|
1946
|
+
]
|
1947
|
+
)
|
1948
|
+
|
1949
|
+
LiteralRegistry.register(
|
1950
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerLegendClass,
|
1951
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerLegendClass"),
|
1952
|
+
:schema_element => [
|
1953
|
+
["mapServerLegendClass", ["ESRI::Soap::MapServer::MapServerLegendClass[]", XSD::QName.new(nil, "MapServerLegendClass")], [0, nil]]
|
1954
|
+
]
|
1955
|
+
)
|
1956
|
+
|
1957
|
+
LiteralRegistry.register(
|
1958
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerLegendGroup,
|
1959
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerLegendGroup"),
|
1960
|
+
:schema_element => [
|
1961
|
+
["mapServerLegendGroup", ["ESRI::Soap::MapServer::MapServerLegendGroup[]", XSD::QName.new(nil, "MapServerLegendGroup")], [0, nil]]
|
1962
|
+
]
|
1963
|
+
)
|
1964
|
+
|
1965
|
+
LiteralRegistry.register(
|
1966
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerLegendInfo,
|
1967
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerLegendInfo"),
|
1968
|
+
:schema_element => [
|
1969
|
+
["mapServerLegendInfo", ["ESRI::Soap::MapServer::MapServerLegendInfo[]", XSD::QName.new(nil, "MapServerLegendInfo")], [0, nil]]
|
1970
|
+
]
|
1971
|
+
)
|
1972
|
+
|
1973
|
+
LiteralRegistry.register(
|
1974
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerRelationship,
|
1975
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerRelationship"),
|
1976
|
+
:schema_element => [
|
1977
|
+
["mapServerRelationship", ["ESRI::Soap::MapServer::MapServerRelationship[]", XSD::QName.new(nil, "MapServerRelationship")], [0, nil]]
|
1978
|
+
]
|
1979
|
+
)
|
1980
|
+
|
1981
|
+
LiteralRegistry.register(
|
1982
|
+
:class => ESRI::Soap::MapServer::ArrayOfMapServerRow,
|
1983
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfMapServerRow"),
|
1984
|
+
:schema_element => [
|
1985
|
+
["mapServerRow", ["ESRI::Soap::MapServer::MapServerRow[]", XSD::QName.new(nil, "MapServerRow")], [0, nil]]
|
1986
|
+
]
|
1987
|
+
)
|
1988
|
+
|
1989
|
+
LiteralRegistry.register(
|
1990
|
+
:class => ESRI::Soap::MapServer::CenterAndScale,
|
1991
|
+
:schema_type => XSD::QName.new(NsC_93, "CenterAndScale"),
|
1992
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
1993
|
+
:schema_element => [
|
1994
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
1995
|
+
["center", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "Center")], [0, 1]],
|
1996
|
+
["scale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Scale")]],
|
1997
|
+
["dPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DPI")], [0, 1]],
|
1998
|
+
["devBottom", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevBottom")], [0, 1]],
|
1999
|
+
["devLeft", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevLeft")], [0, 1]],
|
2000
|
+
["devTop", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevTop")], [0, 1]],
|
2001
|
+
["devRight", ["SOAP::SOAPInt", XSD::QName.new(nil, "DevRight")], [0, 1]]
|
2002
|
+
]
|
2003
|
+
)
|
2004
|
+
|
2005
|
+
LiteralRegistry.register(
|
2006
|
+
:class => ESRI::Soap::MapServer::CenterAndSize,
|
2007
|
+
:schema_type => XSD::QName.new(NsC_93, "CenterAndSize"),
|
2008
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
2009
|
+
:schema_element => [
|
2010
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
2011
|
+
["center", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "Center")], [0, 1]],
|
2012
|
+
["height", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Height")]],
|
2013
|
+
["width", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Width")]],
|
2014
|
+
["units", ["SOAP::SOAPString", XSD::QName.new(nil, "Units")]]
|
2015
|
+
]
|
2016
|
+
)
|
2017
|
+
|
2018
|
+
LiteralRegistry.register(
|
2019
|
+
:class => ESRI::Soap::MapServer::FeatureExtent,
|
2020
|
+
:schema_type => XSD::QName.new(NsC_93, "FeatureExtent"),
|
2021
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
2022
|
+
:schema_element => [
|
2023
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
2024
|
+
["defaultScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DefaultScale")]],
|
2025
|
+
["expandRatio", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ExpandRatio")]],
|
2026
|
+
["featureIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "FeatureIDs")], [0, 1]],
|
2027
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
2028
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
2029
|
+
]
|
2030
|
+
)
|
2031
|
+
|
2032
|
+
LiteralRegistry.register(
|
2033
|
+
:class => ESRI::Soap::MapServer::ImageDescription,
|
2034
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageDescription"),
|
2035
|
+
:schema_element => [
|
2036
|
+
["imageType", ["ESRI::Soap::MapServer::ImageType", XSD::QName.new(nil, "ImageType")], [0, 1]],
|
2037
|
+
["imageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "ImageDisplay")], [0, 1]]
|
2038
|
+
]
|
2039
|
+
)
|
2040
|
+
|
2041
|
+
LiteralRegistry.register(
|
2042
|
+
:class => ESRI::Soap::MapServer::ImageDisplay,
|
2043
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageDisplay"),
|
2044
|
+
:schema_element => [
|
2045
|
+
["imageHeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageHeight")]],
|
2046
|
+
["imageWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageWidth")]],
|
2047
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]],
|
2048
|
+
["transparentColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "TransparentColor")], [0, 1]]
|
2049
|
+
]
|
2050
|
+
)
|
2051
|
+
|
2052
|
+
LiteralRegistry.register(
|
2053
|
+
:class => ESRI::Soap::MapServer::ImageResult,
|
2054
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageResult"),
|
2055
|
+
:schema_element => [
|
2056
|
+
["imageData", ["SOAP::SOAPBase64", XSD::QName.new(nil, "ImageData")], [0, 1]],
|
2057
|
+
["imageURL", ["SOAP::SOAPString", XSD::QName.new(nil, "ImageURL")]],
|
2058
|
+
["imageHeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageHeight")]],
|
2059
|
+
["imageWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageWidth")]],
|
2060
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]]
|
2061
|
+
]
|
2062
|
+
)
|
2063
|
+
|
2064
|
+
LiteralRegistry.register(
|
2065
|
+
:class => ESRI::Soap::MapServer::ImageType,
|
2066
|
+
:schema_type => XSD::QName.new(NsC_93, "ImageType"),
|
2067
|
+
:schema_element => [
|
2068
|
+
["imageFormat", ["ESRI::Soap::MapServer::EsriImageFormat", XSD::QName.new(nil, "ImageFormat")]],
|
2069
|
+
["imageReturnType", ["ESRI::Soap::MapServer::EsriImageReturnType", XSD::QName.new(nil, "ImageReturnType")]]
|
2070
|
+
]
|
2071
|
+
)
|
2072
|
+
|
2073
|
+
LiteralRegistry.register(
|
2074
|
+
:class => ESRI::Soap::MapServer::LayerDescription,
|
2075
|
+
:schema_type => XSD::QName.new(NsC_93, "LayerDescription"),
|
2076
|
+
:schema_element => [
|
2077
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
2078
|
+
["visible", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Visible")]],
|
2079
|
+
["showLabels", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ShowLabels")]],
|
2080
|
+
["scaleSymbols", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ScaleSymbols")]],
|
2081
|
+
["selectionFeatures", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "SelectionFeatures")], [0, 1]],
|
2082
|
+
["selectionColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "SelectionColor")], [0, 1]],
|
2083
|
+
["selectionSymbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "SelectionSymbol")], [0, 1]],
|
2084
|
+
["setSelectionSymbol", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "SetSelectionSymbol")]],
|
2085
|
+
["selectionBufferDistance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "SelectionBufferDistance")]],
|
2086
|
+
["showSelectionBuffer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ShowSelectionBuffer")]],
|
2087
|
+
["definitionExpression", ["SOAP::SOAPString", XSD::QName.new(nil, "DefinitionExpression")]],
|
2088
|
+
["sourceID", ["SOAP::SOAPString", XSD::QName.new(nil, "SourceID")], [0, 1]],
|
2089
|
+
["selectionBufferSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "SelectionBufferSymbol")], [0, 1]],
|
2090
|
+
["layerResultOptions", ["ESRI::Soap::MapServer::LayerResultOptions", XSD::QName.new(nil, "LayerResultOptions")], [0, 1]]
|
2091
|
+
]
|
2092
|
+
)
|
2093
|
+
|
2094
|
+
LiteralRegistry.register(
|
2095
|
+
:class => ESRI::Soap::MapServer::LayerResultOptions,
|
2096
|
+
:schema_type => XSD::QName.new(NsC_93, "LayerResultOptions"),
|
2097
|
+
:schema_element => [
|
2098
|
+
["includeGeometry", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IncludeGeometry")], [0, 1]],
|
2099
|
+
["geometryResultOptions", ["ESRI::Soap::MapServer::GeometryResultOptions", XSD::QName.new(nil, "GeometryResultOptions")], [0, 1]],
|
2100
|
+
["returnFieldNamesInResults", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ReturnFieldNamesInResults")], [0, 1]],
|
2101
|
+
["formatValuesInResults", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FormatValuesInResults")], [0, 1]]
|
2102
|
+
]
|
2103
|
+
)
|
2104
|
+
|
2105
|
+
LiteralRegistry.register(
|
2106
|
+
:class => ESRI::Soap::MapServer::LinePatch,
|
2107
|
+
:schema_type => XSD::QName.new(NsC_93, "LinePatch"),
|
2108
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Patch"),
|
2109
|
+
:schema_element => [
|
2110
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2111
|
+
["preserveAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "PreserveAspectRatio")], [0, 1]],
|
2112
|
+
["geometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Geometry")], [0, 1]]
|
2113
|
+
]
|
2114
|
+
)
|
2115
|
+
|
2116
|
+
LiteralRegistry.register(
|
2117
|
+
:class => ESRI::Soap::MapServer::MapDescription,
|
2118
|
+
:schema_type => XSD::QName.new(NsC_93, "MapDescription"),
|
2119
|
+
:schema_element => [
|
2120
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2121
|
+
["mapArea", ["ESRI::Soap::MapServer::MapArea", XSD::QName.new(nil, "MapArea")], [0, 1]],
|
2122
|
+
["layerDescriptions", ["ESRI::Soap::MapServer::ArrayOfLayerDescription", XSD::QName.new(nil, "LayerDescriptions")], [0, 1]],
|
2123
|
+
["rotation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Rotation")]],
|
2124
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]],
|
2125
|
+
["transparentColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "TransparentColor")], [0, 1]],
|
2126
|
+
["selectionColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "SelectionColor")], [0, 1]],
|
2127
|
+
["backgroundSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "BackgroundSymbol")], [0, 1]],
|
2128
|
+
["customGraphics", ["ESRI::Soap::MapServer::ArrayOfGraphicElement", XSD::QName.new(nil, "CustomGraphics")], [0, 1]],
|
2129
|
+
["geoTransformation", ["ESRI::Soap::MapServer::GeoTransformation", XSD::QName.new(nil, "GeoTransformation")], [0, 1]]
|
2130
|
+
]
|
2131
|
+
)
|
2132
|
+
|
2133
|
+
LiteralRegistry.register(
|
2134
|
+
:class => ESRI::Soap::MapServer::MapExtent,
|
2135
|
+
:schema_type => XSD::QName.new(NsC_93, "MapExtent"),
|
2136
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
2137
|
+
:schema_element => [
|
2138
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]]
|
2139
|
+
]
|
2140
|
+
)
|
2141
|
+
|
2142
|
+
LiteralRegistry.register(
|
2143
|
+
:class => ESRI::Soap::MapServer::MapImage,
|
2144
|
+
:schema_type => XSD::QName.new(NsC_93, "MapImage"),
|
2145
|
+
:schema_element => [
|
2146
|
+
["imageData", ["SOAP::SOAPBase64", XSD::QName.new(nil, "ImageData")], [0, 1]],
|
2147
|
+
["imageURL", ["SOAP::SOAPString", XSD::QName.new(nil, "ImageURL")]],
|
2148
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
2149
|
+
["visibleLayerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "VisibleLayerIDs")], [0, 1]],
|
2150
|
+
["mapScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MapScale")]],
|
2151
|
+
["imageHeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageHeight")]],
|
2152
|
+
["imageWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "ImageWidth")]],
|
2153
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]]
|
2154
|
+
]
|
2155
|
+
)
|
2156
|
+
|
2157
|
+
LiteralRegistry.register(
|
2158
|
+
:class => ESRI::Soap::MapServer::MapLayerInfo,
|
2159
|
+
:schema_type => XSD::QName.new(NsC_93, "MapLayerInfo"),
|
2160
|
+
:schema_element => [
|
2161
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
2162
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2163
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")]],
|
2164
|
+
["layerType", ["SOAP::SOAPString", XSD::QName.new(nil, "LayerType")]],
|
2165
|
+
["sourceDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "SourceDescription")]],
|
2166
|
+
["hasLabels", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasLabels")]],
|
2167
|
+
["canSelect", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanSelect")]],
|
2168
|
+
["canScaleSymbols", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanScaleSymbols")]],
|
2169
|
+
["minScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MinScale")]],
|
2170
|
+
["maxScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaxScale")]],
|
2171
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
2172
|
+
["hasHyperlinks", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasHyperlinks")]],
|
2173
|
+
["hasAttributes", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasAttributes")]],
|
2174
|
+
["canIdentify", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanIdentify")]],
|
2175
|
+
["canFind", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "CanFind")]],
|
2176
|
+
["isFeatureLayer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsFeatureLayer")]],
|
2177
|
+
["fields", ["ESRI::Soap::MapServer::Fields", XSD::QName.new(nil, "Fields")], [0, 1]],
|
2178
|
+
["displayField", ["SOAP::SOAPString", XSD::QName.new(nil, "DisplayField")]],
|
2179
|
+
["iDField", ["SOAP::SOAPString", XSD::QName.new(nil, "IDField")]],
|
2180
|
+
["isComposite", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsComposite")]],
|
2181
|
+
["subLayerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "SubLayerIDs")], [0, 1]],
|
2182
|
+
["parentLayerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "ParentLayerID")]],
|
2183
|
+
["fieldAliases", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "FieldAliases")], [0, 1]],
|
2184
|
+
["copyrightText", ["SOAP::SOAPString", XSD::QName.new(nil, "CopyrightText")]]
|
2185
|
+
]
|
2186
|
+
)
|
2187
|
+
|
2188
|
+
LiteralRegistry.register(
|
2189
|
+
:class => ESRI::Soap::MapServer::MapServerBookmark,
|
2190
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerBookmark"),
|
2191
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MapArea"),
|
2192
|
+
:schema_element => [
|
2193
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
2194
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]]
|
2195
|
+
]
|
2196
|
+
)
|
2197
|
+
|
2198
|
+
LiteralRegistry.register(
|
2199
|
+
:class => ESRI::Soap::MapServer::MapServerFindResult,
|
2200
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerFindResult"),
|
2201
|
+
:schema_element => [
|
2202
|
+
["value", ["SOAP::SOAPString", XSD::QName.new(nil, "Value")]],
|
2203
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
2204
|
+
["featureID", ["SOAP::SOAPInt", XSD::QName.new(nil, "FeatureID")]],
|
2205
|
+
["fieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "FieldName")]],
|
2206
|
+
["shape", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Shape")], [0, 1]],
|
2207
|
+
["properties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Properties")], [0, 1]]
|
2208
|
+
]
|
2209
|
+
)
|
2210
|
+
|
2211
|
+
LiteralRegistry.register(
|
2212
|
+
:class => ESRI::Soap::MapServer::MapServerHyperlink,
|
2213
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerHyperlink"),
|
2214
|
+
:schema_element => [
|
2215
|
+
["location", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Location")], [0, 1]],
|
2216
|
+
["uRL", ["SOAP::SOAPString", XSD::QName.new(nil, "URL")]]
|
2217
|
+
]
|
2218
|
+
)
|
2219
|
+
|
2220
|
+
LiteralRegistry.register(
|
2221
|
+
:class => ESRI::Soap::MapServer::MapServerIdentifyResult,
|
2222
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerIdentifyResult"),
|
2223
|
+
:schema_element => [
|
2224
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
2225
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2226
|
+
["properties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Properties")], [0, 1]],
|
2227
|
+
["shape", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Shape")], [0, 1]],
|
2228
|
+
["relationships", ["ESRI::Soap::MapServer::ArrayOfMapServerRelationship", XSD::QName.new(nil, "Relationships")], [0, 1]]
|
2229
|
+
]
|
2230
|
+
)
|
2231
|
+
|
2232
|
+
LiteralRegistry.register(
|
2233
|
+
:class => ESRI::Soap::MapServer::MapServerInfo,
|
2234
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerInfo"),
|
2235
|
+
:schema_element => [
|
2236
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2237
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")]],
|
2238
|
+
["fullExtent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "FullExtent")], [0, 1]],
|
2239
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
2240
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]],
|
2241
|
+
["mapLayerInfos", ["ESRI::Soap::MapServer::ArrayOfMapLayerInfo", XSD::QName.new(nil, "MapLayerInfos")], [0, 1]],
|
2242
|
+
["backgroundColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BackgroundColor")], [0, 1]],
|
2243
|
+
["bookmarks", ["ESRI::Soap::MapServer::ArrayOfMapServerBookmark", XSD::QName.new(nil, "Bookmarks")], [0, 1]],
|
2244
|
+
["defaultMapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "DefaultMapDescription")], [0, 1]],
|
2245
|
+
["units", ["ESRI::Soap::MapServer::EsriUnits", XSD::QName.new(nil, "Units")]],
|
2246
|
+
["supportedImageReturnTypes", ["ESRI::Soap::MapServer::EsriImageReturnType", XSD::QName.new(nil, "SupportedImageReturnTypes")]],
|
2247
|
+
["backgroundSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "BackgroundSymbol")], [0, 1]],
|
2248
|
+
["copyrightText", ["SOAP::SOAPString", XSD::QName.new(nil, "CopyrightText")]]
|
2249
|
+
]
|
2250
|
+
)
|
2251
|
+
|
2252
|
+
LiteralRegistry.register(
|
2253
|
+
:class => ESRI::Soap::MapServer::MapServerLegendClass,
|
2254
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendClass"),
|
2255
|
+
:schema_element => [
|
2256
|
+
["label", ["SOAP::SOAPString", XSD::QName.new(nil, "Label")]],
|
2257
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")]],
|
2258
|
+
["symbolImage", ["ESRI::Soap::MapServer::ImageResult", XSD::QName.new(nil, "SymbolImage")], [0, 1]],
|
2259
|
+
["transparentColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "TransparentColor")], [0, 1]]
|
2260
|
+
]
|
2261
|
+
)
|
2262
|
+
|
2263
|
+
LiteralRegistry.register(
|
2264
|
+
:class => ESRI::Soap::MapServer::MapServerLegendGroup,
|
2265
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendGroup"),
|
2266
|
+
:schema_element => [
|
2267
|
+
["heading", ["SOAP::SOAPString", XSD::QName.new(nil, "Heading")]],
|
2268
|
+
["legendClasses", ["ESRI::Soap::MapServer::ArrayOfMapServerLegendClass", XSD::QName.new(nil, "LegendClasses")], [0, 1]]
|
2269
|
+
]
|
2270
|
+
)
|
2271
|
+
|
2272
|
+
LiteralRegistry.register(
|
2273
|
+
:class => ESRI::Soap::MapServer::MapServerLegendInfo,
|
2274
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendInfo"),
|
2275
|
+
:schema_element => [
|
2276
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
2277
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2278
|
+
["legendGroups", ["ESRI::Soap::MapServer::ArrayOfMapServerLegendGroup", XSD::QName.new(nil, "LegendGroups")], [0, 1]]
|
2279
|
+
]
|
2280
|
+
)
|
2281
|
+
|
2282
|
+
LiteralRegistry.register(
|
2283
|
+
:class => ESRI::Soap::MapServer::MapServerLegendPatch,
|
2284
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerLegendPatch"),
|
2285
|
+
:schema_element => [
|
2286
|
+
["width", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Width")]],
|
2287
|
+
["height", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Height")]],
|
2288
|
+
["imageDPI", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ImageDPI")]],
|
2289
|
+
["linePatch", ["ESRI::Soap::MapServer::LinePatch", XSD::QName.new(nil, "LinePatch")], [0, 1]],
|
2290
|
+
["areaPatch", ["ESRI::Soap::MapServer::AreaPatch", XSD::QName.new(nil, "AreaPatch")], [0, 1]]
|
2291
|
+
]
|
2292
|
+
)
|
2293
|
+
|
2294
|
+
LiteralRegistry.register(
|
2295
|
+
:class => ESRI::Soap::MapServer::MapServerRelationship,
|
2296
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerRelationship"),
|
2297
|
+
:schema_element => [
|
2298
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2299
|
+
["rows", ["ESRI::Soap::MapServer::ArrayOfMapServerRow", XSD::QName.new(nil, "Rows")], [0, 1]]
|
2300
|
+
]
|
2301
|
+
)
|
2302
|
+
|
2303
|
+
LiteralRegistry.register(
|
2304
|
+
:class => ESRI::Soap::MapServer::MapServerRow,
|
2305
|
+
:schema_type => XSD::QName.new(NsC_93, "MapServerRow"),
|
2306
|
+
:schema_element => [
|
2307
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2308
|
+
["properties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Properties")], [0, 1]],
|
2309
|
+
["relationships", ["ESRI::Soap::MapServer::ArrayOfMapServerRelationship", XSD::QName.new(nil, "Relationships")], [0, 1]]
|
2310
|
+
]
|
2311
|
+
)
|
2312
|
+
|
2313
|
+
LiteralRegistry.register(
|
2314
|
+
:class => ESRI::Soap::MapServer::AlternatingScaleBar,
|
2315
|
+
:schema_type => XSD::QName.new(NsC_93, "AlternatingScaleBar"),
|
2316
|
+
:schema_basetype => XSD::QName.new(NsC_93, "ScaleBar"),
|
2317
|
+
:schema_element => [
|
2318
|
+
["barHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "BarHeight")], [0, 1]],
|
2319
|
+
["division", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Division")], [0, 1]],
|
2320
|
+
["divisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Divisions")], [0, 1]],
|
2321
|
+
["divisionsBeforeZero", ["SOAP::SOAPShort", XSD::QName.new(nil, "DivisionsBeforeZero")], [0, 1]],
|
2322
|
+
["subdivisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Subdivisions")], [0, 1]],
|
2323
|
+
["units", ["ESRI::Soap::MapServer::EsriUnits", XSD::QName.new(nil, "Units")], [0, 1]],
|
2324
|
+
["unitLabel", ["SOAP::SOAPString", XSD::QName.new(nil, "UnitLabel")], [0, 1]],
|
2325
|
+
["unitLabelPosition", ["ESRI::Soap::MapServer::EsriScaleBarPos", XSD::QName.new(nil, "UnitLabelPosition")], [0, 1]],
|
2326
|
+
["unitLabelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "UnitLabelGap")], [0, 1]],
|
2327
|
+
["unitLabelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "UnitLabelSymbol")], [0, 1]],
|
2328
|
+
["labelFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "LabelFrequency")], [0, 1]],
|
2329
|
+
["labelPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "LabelPosition")], [0, 1]],
|
2330
|
+
["labelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LabelGap")], [0, 1]],
|
2331
|
+
["labelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "LabelSymbol")], [0, 1]],
|
2332
|
+
["numberFormat", ["ESRI::Soap::MapServer::NumericFormat", XSD::QName.new(nil, "NumberFormat")], [0, 1]],
|
2333
|
+
["resizeHint", ["ESRI::Soap::MapServer::EsriScaleBarResizeHint", XSD::QName.new(nil, "ResizeHint")], [0, 1]],
|
2334
|
+
["fillSymbol1", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "FillSymbol1")], [0, 1]],
|
2335
|
+
["fillSymbol2", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "FillSymbol2")], [0, 1]],
|
2336
|
+
["divisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "DivisionMarkSymbol")], [0, 1]],
|
2337
|
+
["subdivisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "SubdivisionMarkSymbol")], [0, 1]],
|
2338
|
+
["divisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DivisionMarkHeight")], [0, 1]],
|
2339
|
+
["subdivisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "SubdivisionMarkHeight")], [0, 1]],
|
2340
|
+
["markPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "MarkPosition")], [0, 1]],
|
2341
|
+
["markFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "MarkFrequency")], [0, 1]]
|
2342
|
+
]
|
2343
|
+
)
|
2344
|
+
|
2345
|
+
LiteralRegistry.register(
|
2346
|
+
:class => ESRI::Soap::MapServer::SingleDivisionScaleBar,
|
2347
|
+
:schema_type => XSD::QName.new(NsC_93, "SingleDivisionScaleBar"),
|
2348
|
+
:schema_basetype => XSD::QName.new(NsC_93, "ScaleBar"),
|
2349
|
+
:schema_element => [
|
2350
|
+
["barHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "BarHeight")], [0, 1]],
|
2351
|
+
["division", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Division")], [0, 1]],
|
2352
|
+
["divisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Divisions")], [0, 1]],
|
2353
|
+
["divisionsBeforeZero", ["SOAP::SOAPShort", XSD::QName.new(nil, "DivisionsBeforeZero")], [0, 1]],
|
2354
|
+
["subdivisions", ["SOAP::SOAPShort", XSD::QName.new(nil, "Subdivisions")], [0, 1]],
|
2355
|
+
["units", ["ESRI::Soap::MapServer::EsriUnits", XSD::QName.new(nil, "Units")], [0, 1]],
|
2356
|
+
["unitLabel", ["SOAP::SOAPString", XSD::QName.new(nil, "UnitLabel")], [0, 1]],
|
2357
|
+
["unitLabelPosition", ["ESRI::Soap::MapServer::EsriScaleBarPos", XSD::QName.new(nil, "UnitLabelPosition")], [0, 1]],
|
2358
|
+
["unitLabelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "UnitLabelGap")], [0, 1]],
|
2359
|
+
["unitLabelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "UnitLabelSymbol")], [0, 1]],
|
2360
|
+
["labelFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "LabelFrequency")], [0, 1]],
|
2361
|
+
["labelPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "LabelPosition")], [0, 1]],
|
2362
|
+
["labelGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LabelGap")], [0, 1]],
|
2363
|
+
["labelSymbol", ["ESRI::Soap::MapServer::TextSymbol", XSD::QName.new(nil, "LabelSymbol")], [0, 1]],
|
2364
|
+
["numberFormat", ["ESRI::Soap::MapServer::NumericFormat", XSD::QName.new(nil, "NumberFormat")], [0, 1]],
|
2365
|
+
["resizeHint", ["ESRI::Soap::MapServer::EsriScaleBarResizeHint", XSD::QName.new(nil, "ResizeHint")], [0, 1]],
|
2366
|
+
["fillSymbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "FillSymbol")], [0, 1]],
|
2367
|
+
["divisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "DivisionMarkSymbol")], [0, 1]],
|
2368
|
+
["subdivisionMarkSymbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "SubdivisionMarkSymbol")], [0, 1]],
|
2369
|
+
["divisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "DivisionMarkHeight")], [0, 1]],
|
2370
|
+
["subdivisionMarkHeight", ["SOAP::SOAPDouble", XSD::QName.new(nil, "SubdivisionMarkHeight")], [0, 1]],
|
2371
|
+
["markPosition", ["ESRI::Soap::MapServer::EsriVertPosEnum", XSD::QName.new(nil, "MarkPosition")], [0, 1]],
|
2372
|
+
["markFrequency", ["ESRI::Soap::MapServer::EsriScaleBarFrequency", XSD::QName.new(nil, "MarkFrequency")], [0, 1]]
|
2373
|
+
]
|
2374
|
+
)
|
2375
|
+
|
2376
|
+
LiteralRegistry.register(
|
2377
|
+
:class => ESRI::Soap::MapServer::SQLSyntaxInfo,
|
2378
|
+
:schema_type => XSD::QName.new(NsC_93, "SQLSyntaxInfo"),
|
2379
|
+
:schema_element => [
|
2380
|
+
["functionNames", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "FunctionNames")], [0, 1]],
|
2381
|
+
["specialCharacters", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "SpecialCharacters")], [0, 1]],
|
2382
|
+
["supportedPredicates", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "SupportedPredicates")], [0, 1]],
|
2383
|
+
["supportedClauses", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "SupportedClauses")], [0, 1]],
|
2384
|
+
["identifierCase", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IdentifierCase")]],
|
2385
|
+
["delimitedIdentifierCase", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DelimitedIdentifierCase")]],
|
2386
|
+
["stringComparisonCase", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "StringComparisonCase")]],
|
2387
|
+
["keywords", ["ESRI::Soap::MapServer::ArrayOfString", XSD::QName.new(nil, "Keywords")], [0, 1]],
|
2388
|
+
["invalidCharacters", ["SOAP::SOAPString", XSD::QName.new(nil, "InvalidCharacters")]],
|
2389
|
+
["invalidStartingCharacters", ["SOAP::SOAPString", XSD::QName.new(nil, "InvalidStartingCharacters")]]
|
2390
|
+
]
|
2391
|
+
)
|
2392
|
+
|
2393
|
+
LiteralRegistry.register(
|
2394
|
+
:class => ESRI::Soap::MapServer::SymbolBackground,
|
2395
|
+
:schema_type => XSD::QName.new(NsC_93, "SymbolBackground"),
|
2396
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Background"),
|
2397
|
+
:schema_element => [
|
2398
|
+
["horizontalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "HorizontalGap")]],
|
2399
|
+
["cornerRounding", ["SOAP::SOAPShort", XSD::QName.new(nil, "CornerRounding")]],
|
2400
|
+
["verticalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "VerticalGap")]],
|
2401
|
+
["symbol", ["ESRI::Soap::MapServer::FillSymbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
2402
|
+
]
|
2403
|
+
)
|
2404
|
+
|
2405
|
+
LiteralRegistry.register(
|
2406
|
+
:class => ESRI::Soap::MapServer::SymbolBorder,
|
2407
|
+
:schema_type => XSD::QName.new(NsC_93, "SymbolBorder"),
|
2408
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Border"),
|
2409
|
+
:schema_element => [
|
2410
|
+
["horizontalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "HorizontalGap")]],
|
2411
|
+
["cornerRounding", ["SOAP::SOAPShort", XSD::QName.new(nil, "CornerRounding")]],
|
2412
|
+
["verticalGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "VerticalGap")]],
|
2413
|
+
["symbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
2414
|
+
]
|
2415
|
+
)
|
2416
|
+
|
2417
|
+
LiteralRegistry.register(
|
2418
|
+
:class => ESRI::Soap::MapServer::SymbolShadow,
|
2419
|
+
:schema_type => XSD::QName.new(NsC_93, "SymbolShadow"),
|
2420
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Shadow"),
|
2421
|
+
:schema_element => [
|
2422
|
+
["symbol", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
2423
|
+
["cornerRounding", ["SOAP::SOAPShort", XSD::QName.new(nil, "CornerRounding")]],
|
2424
|
+
["horizontalOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "HorizontalOffset")]],
|
2425
|
+
["verticalOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "VerticalOffset")]]
|
2426
|
+
]
|
2427
|
+
)
|
2428
|
+
|
2429
|
+
LiteralRegistry.register(
|
2430
|
+
:class => ESRI::Soap::MapServer::LineElement,
|
2431
|
+
:schema_type => XSD::QName.new(NsC_93, "LineElement"),
|
2432
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2433
|
+
:schema_element => [
|
2434
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2435
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2436
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2437
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2438
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
2439
|
+
["line", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Line")]],
|
2440
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
2441
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]]
|
2442
|
+
]
|
2443
|
+
)
|
2444
|
+
|
2445
|
+
LiteralRegistry.register(
|
2446
|
+
:class => ESRI::Soap::MapServer::CircleElement,
|
2447
|
+
:schema_type => XSD::QName.new(NsC_93, "CircleElement"),
|
2448
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2449
|
+
:schema_element => [
|
2450
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")]],
|
2451
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
2452
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
2453
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2454
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2455
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2456
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2457
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
2458
|
+
]
|
2459
|
+
)
|
2460
|
+
|
2461
|
+
LiteralRegistry.register(
|
2462
|
+
:class => ESRI::Soap::MapServer::EllipseElement,
|
2463
|
+
:schema_type => XSD::QName.new(NsC_93, "EllipseElement"),
|
2464
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2465
|
+
:schema_element => [
|
2466
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")]],
|
2467
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
2468
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
2469
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2470
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2471
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2472
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2473
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
2474
|
+
]
|
2475
|
+
)
|
2476
|
+
|
2477
|
+
LiteralRegistry.register(
|
2478
|
+
:class => ESRI::Soap::MapServer::GroupElement,
|
2479
|
+
:schema_type => XSD::QName.new(NsC_93, "GroupElement"),
|
2480
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Element"),
|
2481
|
+
:schema_element => [
|
2482
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2483
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2484
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2485
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2486
|
+
["elements", ["ESRI::Soap::MapServer::ArrayOfGraphicElement", XSD::QName.new(nil, "Elements")]],
|
2487
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")], [0, 1]],
|
2488
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
2489
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
2490
|
+
["border", ["ESRI::Soap::MapServer::Border", XSD::QName.new(nil, "Border")], [0, 1]],
|
2491
|
+
["background", ["ESRI::Soap::MapServer::Background", XSD::QName.new(nil, "Background")], [0, 1]],
|
2492
|
+
["draftMode", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DraftMode")], [0, 1]],
|
2493
|
+
["shadow", ["ESRI::Soap::MapServer::Shadow", XSD::QName.new(nil, "Shadow")], [0, 1]]
|
2494
|
+
]
|
2495
|
+
)
|
2496
|
+
|
2497
|
+
LiteralRegistry.register(
|
2498
|
+
:class => ESRI::Soap::MapServer::MarkerElement,
|
2499
|
+
:schema_type => XSD::QName.new(NsC_93, "MarkerElement"),
|
2500
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2501
|
+
:schema_element => [
|
2502
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2503
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2504
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2505
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2506
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
2507
|
+
["point", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "Point")]],
|
2508
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]]
|
2509
|
+
]
|
2510
|
+
)
|
2511
|
+
|
2512
|
+
LiteralRegistry.register(
|
2513
|
+
:class => ESRI::Soap::MapServer::ParagraphTextElement,
|
2514
|
+
:schema_type => XSD::QName.new(NsC_93, "ParagraphTextElement"),
|
2515
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2516
|
+
:schema_element => [
|
2517
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2518
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2519
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2520
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2521
|
+
["text", ["SOAP::SOAPString", XSD::QName.new(nil, "Text")], [0, 1]],
|
2522
|
+
["scale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Scale")], [0, 1]],
|
2523
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
2524
|
+
["textGeometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "TextGeometry")]],
|
2525
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
2526
|
+
["frameBorder", ["ESRI::Soap::MapServer::Border", XSD::QName.new(nil, "FrameBorder")], [0, 1]],
|
2527
|
+
["frameBackground", ["ESRI::Soap::MapServer::Background", XSD::QName.new(nil, "FrameBackground")], [0, 1]],
|
2528
|
+
["frameShadow", ["ESRI::Soap::MapServer::Shadow", XSD::QName.new(nil, "FrameShadow")], [0, 1]],
|
2529
|
+
["columnGap", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ColumnGap")], [0, 1]],
|
2530
|
+
["columnCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "ColumnCount")], [0, 1]],
|
2531
|
+
["margin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Margin")], [0, 1]]
|
2532
|
+
]
|
2533
|
+
)
|
2534
|
+
|
2535
|
+
LiteralRegistry.register(
|
2536
|
+
:class => ESRI::Soap::MapServer::PolygonElement,
|
2537
|
+
:schema_type => XSD::QName.new(NsC_93, "PolygonElement"),
|
2538
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2539
|
+
:schema_element => [
|
2540
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2541
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2542
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2543
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2544
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
2545
|
+
["polygon", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Polygon")]],
|
2546
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
2547
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]]
|
2548
|
+
]
|
2549
|
+
)
|
2550
|
+
|
2551
|
+
LiteralRegistry.register(
|
2552
|
+
:class => ESRI::Soap::MapServer::RectangleElement,
|
2553
|
+
:schema_type => XSD::QName.new(NsC_93, "RectangleElement"),
|
2554
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2555
|
+
:schema_element => [
|
2556
|
+
["rectangle", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Rectangle")]],
|
2557
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]],
|
2558
|
+
["fixedAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FixedAspectRatio")], [0, 1]],
|
2559
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2560
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2561
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2562
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2563
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]]
|
2564
|
+
]
|
2565
|
+
)
|
2566
|
+
|
2567
|
+
LiteralRegistry.register(
|
2568
|
+
:class => ESRI::Soap::MapServer::TextElement,
|
2569
|
+
:schema_type => XSD::QName.new(NsC_93, "TextElement"),
|
2570
|
+
:schema_basetype => XSD::QName.new(NsC_93, "GraphicElement"),
|
2571
|
+
:schema_element => [
|
2572
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2573
|
+
["type", ["SOAP::SOAPString", XSD::QName.new(nil, "Type")], [0, 1]],
|
2574
|
+
["autoTransform", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "AutoTransform")], [0, 1]],
|
2575
|
+
["referenceScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ReferenceScale")], [0, 1]],
|
2576
|
+
["text", ["SOAP::SOAPString", XSD::QName.new(nil, "Text")], [0, 1]],
|
2577
|
+
["scale", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Scale")], [0, 1]],
|
2578
|
+
["symbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "Symbol")], [0, 1]],
|
2579
|
+
["textGeometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "TextGeometry")]],
|
2580
|
+
["locked", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Locked")], [0, 1]]
|
2581
|
+
]
|
2582
|
+
)
|
2583
|
+
|
2584
|
+
LiteralRegistry.register(
|
2585
|
+
:class => ESRI::Soap::MapServer::Patch,
|
2586
|
+
:schema_type => XSD::QName.new(NsC_93, "Patch"),
|
2587
|
+
:schema_element => [
|
2588
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")], [0, 1]],
|
2589
|
+
["preserveAspectRatio", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "PreserveAspectRatio")], [0, 1]],
|
2590
|
+
["geometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "Geometry")], [0, 1]]
|
2591
|
+
]
|
2592
|
+
)
|
2593
|
+
|
2594
|
+
LiteralRegistry.register(
|
2595
|
+
:class => ESRI::Soap::MapServer::TileImageInfo,
|
2596
|
+
:schema_type => XSD::QName.new(NsC_93, "TileImageInfo"),
|
2597
|
+
:schema_element => [
|
2598
|
+
["cacheTileFormat", ["SOAP::SOAPString", XSD::QName.new(nil, "CacheTileFormat")]],
|
2599
|
+
["compressionQuality", ["SOAP::SOAPInt", XSD::QName.new(nil, "CompressionQuality")]],
|
2600
|
+
["antialiasing", ["SOAP::SOAPString", XSD::QName.new(nil, "Antialiasing")]]
|
2601
|
+
]
|
2602
|
+
)
|
2603
|
+
|
2604
|
+
LiteralRegistry.register(
|
2605
|
+
:class => ESRI::Soap::MapServer::LayerCacheInfo,
|
2606
|
+
:schema_type => XSD::QName.new(NsC_93, "LayerCacheInfo"),
|
2607
|
+
:schema_element => [
|
2608
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
2609
|
+
["hasCache", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasCache")]]
|
2610
|
+
]
|
2611
|
+
)
|
2612
|
+
|
2613
|
+
LiteralRegistry.register(
|
2614
|
+
:class => ESRI::Soap::MapServer::ArrayOfLayerCacheInfo,
|
2615
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfLayerCacheInfo"),
|
2616
|
+
:schema_element => [
|
2617
|
+
["layerCacheInfo", ["ESRI::Soap::MapServer::LayerCacheInfo", XSD::QName.new(nil, "LayerCacheInfo")]]
|
2618
|
+
]
|
2619
|
+
)
|
2620
|
+
|
2621
|
+
LiteralRegistry.register(
|
2622
|
+
:class => ESRI::Soap::MapServer::CacheDescriptionInfo,
|
2623
|
+
:schema_type => XSD::QName.new(NsC_93, "CacheDescriptionInfo"),
|
2624
|
+
:schema_element => [
|
2625
|
+
["tileCacheInfo", ["ESRI::Soap::MapServer::TileCacheInfo", XSD::QName.new(nil, "TileCacheInfo")]],
|
2626
|
+
["tileImageInfo", ["ESRI::Soap::MapServer::TileImageInfo", XSD::QName.new(nil, "TileImageInfo")]],
|
2627
|
+
["layerCacheInfos", ["ESRI::Soap::MapServer::ArrayOfLayerCacheInfo", XSD::QName.new(nil, "LayerCacheInfos")]],
|
2628
|
+
["cacheControlInfo", ["ESRI::Soap::MapServer::CacheControlInfo", XSD::QName.new(nil, "CacheControlInfo")]],
|
2629
|
+
["serviceType", ["ESRI::Soap::MapServer::EsriCachedMapServiceType", XSD::QName.new(nil, "ServiceType")]]
|
2630
|
+
]
|
2631
|
+
)
|
2632
|
+
|
2633
|
+
LiteralRegistry.register(
|
2634
|
+
:class => ESRI::Soap::MapServer::CacheControlInfo,
|
2635
|
+
:schema_type => XSD::QName.new(NsC_93, "CacheControlInfo"),
|
2636
|
+
:schema_element => [
|
2637
|
+
["clientCachingAllowed", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ClientCachingAllowed")]]
|
2638
|
+
]
|
2639
|
+
)
|
2640
|
+
|
2641
|
+
LiteralRegistry.register(
|
2642
|
+
:class => ESRI::Soap::MapServer::QueryResultOptions,
|
2643
|
+
:schema_type => XSD::QName.new(NsC_93, "QueryResultOptions"),
|
2644
|
+
:schema_element => [
|
2645
|
+
["format", ["ESRI::Soap::MapServer::EsriQueryResultFormat", XSD::QName.new(nil, "Format")]],
|
2646
|
+
["formatProperties", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "FormatProperties")], [0, 1]],
|
2647
|
+
["geoTransformation", ["ESRI::Soap::MapServer::GeoTransformation", XSD::QName.new(nil, "GeoTransformation")], [0, 1]]
|
2648
|
+
]
|
2649
|
+
)
|
2650
|
+
|
2651
|
+
LiteralRegistry.register(
|
2652
|
+
:class => ESRI::Soap::MapServer::QueryResult,
|
2653
|
+
:schema_type => XSD::QName.new(NsC_93, "QueryResult"),
|
2654
|
+
:schema_element => [
|
2655
|
+
["mimeData", ["SOAP::SOAPBase64", XSD::QName.new(nil, "MimeData")], [0, 1]],
|
2656
|
+
["uRL", ["SOAP::SOAPString", XSD::QName.new(nil, "URL")]],
|
2657
|
+
["object", [nil, XSD::QName.new(nil, "Object")]]
|
2658
|
+
]
|
2659
|
+
)
|
2660
|
+
|
2661
|
+
LiteralRegistry.register(
|
2662
|
+
:class => ESRI::Soap::MapServer::GrayColor,
|
2663
|
+
:schema_type => XSD::QName.new(NsC_93, "GrayColor"),
|
2664
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
2665
|
+
:schema_element => [
|
2666
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
2667
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
2668
|
+
["grayLevel", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "GrayLevel")]]
|
2669
|
+
]
|
2670
|
+
)
|
2671
|
+
|
2672
|
+
LiteralRegistry.register(
|
2673
|
+
:class => ESRI::Soap::MapServer::RgbColor,
|
2674
|
+
:schema_type => XSD::QName.new(NsC_93, "RgbColor"),
|
2675
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
2676
|
+
:schema_element => [
|
2677
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
2678
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
2679
|
+
["red", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Red")]],
|
2680
|
+
["green", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Green")]],
|
2681
|
+
["blue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Blue")]]
|
2682
|
+
]
|
2683
|
+
)
|
2684
|
+
|
2685
|
+
LiteralRegistry.register(
|
2686
|
+
:class => ESRI::Soap::MapServer::CmykColor,
|
2687
|
+
:schema_type => XSD::QName.new(NsC_93, "CmykColor"),
|
2688
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
2689
|
+
:schema_element => [
|
2690
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
2691
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
2692
|
+
["cyan", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Cyan")]],
|
2693
|
+
["magenta", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Magenta")]],
|
2694
|
+
["yellow", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Yellow")]],
|
2695
|
+
["black", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Black")]],
|
2696
|
+
["overprint", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Overprint")]],
|
2697
|
+
["isSpot", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsSpot")]],
|
2698
|
+
["spotDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "SpotDescription")]],
|
2699
|
+
["spotPercent", ["SOAP::SOAPShort", XSD::QName.new(nil, "SpotPercent")]]
|
2700
|
+
]
|
2701
|
+
)
|
2702
|
+
|
2703
|
+
LiteralRegistry.register(
|
2704
|
+
:class => ESRI::Soap::MapServer::HlsColor,
|
2705
|
+
:schema_type => XSD::QName.new(NsC_93, "HlsColor"),
|
2706
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
2707
|
+
:schema_element => [
|
2708
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
2709
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
2710
|
+
["hue", ["SOAP::SOAPShort", XSD::QName.new(nil, "Hue")]],
|
2711
|
+
["lightness", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Lightness")]],
|
2712
|
+
["saturation", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Saturation")]]
|
2713
|
+
]
|
2714
|
+
)
|
2715
|
+
|
2716
|
+
LiteralRegistry.register(
|
2717
|
+
:class => ESRI::Soap::MapServer::HsvColor,
|
2718
|
+
:schema_type => XSD::QName.new(NsC_93, "HsvColor"),
|
2719
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Color"),
|
2720
|
+
:schema_element => [
|
2721
|
+
["useWindowsDithering", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseWindowsDithering")], [0, 1]],
|
2722
|
+
["alphaValue", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "AlphaValue")], [0, 1]],
|
2723
|
+
["hue", ["SOAP::SOAPShort", XSD::QName.new(nil, "Hue")]],
|
2724
|
+
["saturation", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Saturation")]],
|
2725
|
+
["value", ["SOAP::SOAPUnsignedByte", XSD::QName.new(nil, "Value")]]
|
2726
|
+
]
|
2727
|
+
)
|
2728
|
+
|
2729
|
+
LiteralRegistry.register(
|
2730
|
+
:class => ESRI::Soap::MapServer::SimpleFillSymbol,
|
2731
|
+
:schema_type => XSD::QName.new(NsC_93, "SimpleFillSymbol"),
|
2732
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FillSymbol"),
|
2733
|
+
:schema_element => [
|
2734
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2735
|
+
["outline", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Outline")], [0, 1]],
|
2736
|
+
["style", ["ESRI::Soap::MapServer::EsriSimpleFillStyle", XSD::QName.new(nil, "Style")]]
|
2737
|
+
]
|
2738
|
+
)
|
2739
|
+
|
2740
|
+
LiteralRegistry.register(
|
2741
|
+
:class => ESRI::Soap::MapServer::SimpleLineSymbol,
|
2742
|
+
:schema_type => XSD::QName.new(NsC_93, "SimpleLineSymbol"),
|
2743
|
+
:schema_basetype => XSD::QName.new(NsC_93, "LineSymbol"),
|
2744
|
+
:schema_element => [
|
2745
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2746
|
+
["width", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Width")]],
|
2747
|
+
["style", ["ESRI::Soap::MapServer::EsriSimpleLineStyle", XSD::QName.new(nil, "Style")]]
|
2748
|
+
]
|
2749
|
+
)
|
2750
|
+
|
2751
|
+
LiteralRegistry.register(
|
2752
|
+
:class => ESRI::Soap::MapServer::SimpleMarkerSymbol,
|
2753
|
+
:schema_type => XSD::QName.new(NsC_93, "SimpleMarkerSymbol"),
|
2754
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MarkerSymbol"),
|
2755
|
+
:schema_element => [
|
2756
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
2757
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2758
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
2759
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
2760
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
2761
|
+
["outline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Outline")]],
|
2762
|
+
["outlineSize", ["SOAP::SOAPDouble", XSD::QName.new(nil, "OutlineSize")]],
|
2763
|
+
["outlineColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "OutlineColor")]],
|
2764
|
+
["style", ["ESRI::Soap::MapServer::EsriSimpleMarkerStyle", XSD::QName.new(nil, "Style")]]
|
2765
|
+
]
|
2766
|
+
)
|
2767
|
+
|
2768
|
+
LiteralRegistry.register(
|
2769
|
+
:class => ESRI::Soap::MapServer::TextSymbol,
|
2770
|
+
:schema_type => XSD::QName.new(NsC_93, "TextSymbol"),
|
2771
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Symbol"),
|
2772
|
+
:schema_element => [
|
2773
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2774
|
+
["breakCharIndex", ["SOAP::SOAPInt", XSD::QName.new(nil, "BreakCharIndex")]],
|
2775
|
+
["verticalAlignment", ["ESRI::Soap::MapServer::EsriTextVerticalAlignment", XSD::QName.new(nil, "VerticalAlignment")]],
|
2776
|
+
["horizontalAlignment", ["ESRI::Soap::MapServer::EsriTextHorizontalAlignment", XSD::QName.new(nil, "HorizontalAlignment")]],
|
2777
|
+
["clip", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Clip")]],
|
2778
|
+
["rightToLeft", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "RightToLeft")]],
|
2779
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
2780
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
2781
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
2782
|
+
["shadowColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "ShadowColor")], [0, 1]],
|
2783
|
+
["shadowXOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ShadowXOffset")]],
|
2784
|
+
["shadowYOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ShadowYOffset")]],
|
2785
|
+
["textPosition", ["ESRI::Soap::MapServer::EsriTextPosition", XSD::QName.new(nil, "TextPosition")]],
|
2786
|
+
["textCase", ["ESRI::Soap::MapServer::EsriTextCase", XSD::QName.new(nil, "TextCase")]],
|
2787
|
+
["characterSpacing", ["SOAP::SOAPDouble", XSD::QName.new(nil, "CharacterSpacing")]],
|
2788
|
+
["characterWidth", ["SOAP::SOAPDouble", XSD::QName.new(nil, "CharacterWidth")]],
|
2789
|
+
["wordSpacing", ["SOAP::SOAPDouble", XSD::QName.new(nil, "WordSpacing")]],
|
2790
|
+
["kerning", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Kerning")]],
|
2791
|
+
["leading", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Leading")]],
|
2792
|
+
["textDirection", ["ESRI::Soap::MapServer::EsriTextDirection", XSD::QName.new(nil, "TextDirection")]],
|
2793
|
+
["flipAngle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "FlipAngle")]],
|
2794
|
+
["typeSetting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "TypeSetting")]],
|
2795
|
+
["textPathClass", ["SOAP::SOAPString", XSD::QName.new(nil, "TextPathClass")], [0, 1]],
|
2796
|
+
["fillSymbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "FillSymbol")], [0, 1]],
|
2797
|
+
["text", ["SOAP::SOAPString", XSD::QName.new(nil, "Text")]],
|
2798
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
2799
|
+
["maskStyle", ["ESRI::Soap::MapServer::EsriMaskStyle", XSD::QName.new(nil, "MaskStyle")]],
|
2800
|
+
["maskSize", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaskSize")]],
|
2801
|
+
["maskSymbol", ["ESRI::Soap::MapServer::C_Symbol", XSD::QName.new(nil, "MaskSymbol")], [0, 1]],
|
2802
|
+
["fontName", ["SOAP::SOAPString", XSD::QName.new(nil, "FontName")], [0, 1]],
|
2803
|
+
["fontItalic", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontItalic")], [0, 1]],
|
2804
|
+
["fontUnderline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontUnderline")], [0, 1]],
|
2805
|
+
["fontStrikethrough", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontStrikethrough")], [0, 1]],
|
2806
|
+
["fontWeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontWeight")], [0, 1]],
|
2807
|
+
["fontCharset", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontCharset")], [0, 1]],
|
2808
|
+
["fontSizeHi", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeHi")], [0, 1]],
|
2809
|
+
["fontSizeLo", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeLo")], [0, 1]],
|
2810
|
+
["textParserClass", ["SOAP::SOAPString", XSD::QName.new(nil, "TextParserClass")], [0, 1]]
|
2811
|
+
]
|
2812
|
+
)
|
2813
|
+
|
2814
|
+
LiteralRegistry.register(
|
2815
|
+
:class => ESRI::Soap::MapServer::CharacterMarkerSymbol,
|
2816
|
+
:schema_type => XSD::QName.new(NsC_93, "CharacterMarkerSymbol"),
|
2817
|
+
:schema_basetype => XSD::QName.new(NsC_93, "CartographicMarkerSymbol"),
|
2818
|
+
:schema_element => [
|
2819
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
2820
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2821
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
2822
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
2823
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
2824
|
+
["xScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XScale")]],
|
2825
|
+
["yScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YScale")]],
|
2826
|
+
["characterIndex", ["SOAP::SOAPInt", XSD::QName.new(nil, "CharacterIndex")]],
|
2827
|
+
["fontName", ["SOAP::SOAPString", XSD::QName.new(nil, "FontName")], [0, 1]],
|
2828
|
+
["fontItalic", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontItalic")], [0, 1]],
|
2829
|
+
["fontUnderline", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontUnderline")], [0, 1]],
|
2830
|
+
["fontStrikethrough", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FontStrikethrough")], [0, 1]],
|
2831
|
+
["fontWeight", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontWeight")], [0, 1]],
|
2832
|
+
["fontCharset", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontCharset")], [0, 1]],
|
2833
|
+
["fontSizeHi", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeHi")], [0, 1]],
|
2834
|
+
["fontSizeLo", ["SOAP::SOAPInt", XSD::QName.new(nil, "FontSizeLo")], [0, 1]]
|
2835
|
+
]
|
2836
|
+
)
|
2837
|
+
|
2838
|
+
LiteralRegistry.register(
|
2839
|
+
:class => ESRI::Soap::MapServer::PictureMarkerSymbol,
|
2840
|
+
:schema_type => XSD::QName.new(NsC_93, "PictureMarkerSymbol"),
|
2841
|
+
:schema_basetype => XSD::QName.new(NsC_93, "CartographicMarkerSymbol"),
|
2842
|
+
:schema_element => [
|
2843
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")]],
|
2844
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2845
|
+
["size", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Size")]],
|
2846
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")]],
|
2847
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")]],
|
2848
|
+
["xScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XScale")]],
|
2849
|
+
["yScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YScale")]],
|
2850
|
+
["bgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BgColor")], [0, 1]],
|
2851
|
+
["bitmapTransColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BitmapTransColor")], [0, 1]],
|
2852
|
+
["picture", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Picture")], [0, 1]],
|
2853
|
+
["fgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "FgColor")], [0, 1]],
|
2854
|
+
["swap1BitColor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Swap1BitColor")], [0, 1]]
|
2855
|
+
]
|
2856
|
+
)
|
2857
|
+
|
2858
|
+
LiteralRegistry.register(
|
2859
|
+
:class => ESRI::Soap::MapServer::PictureFillSymbol,
|
2860
|
+
:schema_type => XSD::QName.new(NsC_93, "PictureFillSymbol"),
|
2861
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FillSymbol"),
|
2862
|
+
:schema_element => [
|
2863
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2864
|
+
["outline", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Outline")], [0, 1]],
|
2865
|
+
["picture", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Picture")]],
|
2866
|
+
["bgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BgColor")], [0, 1]],
|
2867
|
+
["fgColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "FgColor")], [0, 1]],
|
2868
|
+
["bitmapTransColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BitmapTransColor")], [0, 1]],
|
2869
|
+
["xSeparation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XSeparation")], [0, 1]],
|
2870
|
+
["ySeparation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YSeparation")], [0, 1]],
|
2871
|
+
["swap1BitColor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Swap1BitColor")], [0, 1]],
|
2872
|
+
["angle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Angle")], [0, 1]],
|
2873
|
+
["xOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOffset")], [0, 1]],
|
2874
|
+
["yOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOffset")], [0, 1]],
|
2875
|
+
["xScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XScale")], [0, 1]],
|
2876
|
+
["yScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YScale")], [0, 1]]
|
2877
|
+
]
|
2878
|
+
)
|
2879
|
+
|
2880
|
+
LiteralRegistry.register(
|
2881
|
+
:class => ESRI::Soap::MapServer::XMLBinarySymbol,
|
2882
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLBinarySymbol"),
|
2883
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Symbol"),
|
2884
|
+
:schema_element => [
|
2885
|
+
["data", ["ESRI::Soap::MapServer::XMLPersistedObject", XSD::QName.new(nil, "Data")]]
|
2886
|
+
]
|
2887
|
+
)
|
2888
|
+
|
2889
|
+
LiteralRegistry.register(
|
2890
|
+
:class => ESRI::Soap::MapServer::XMLBinaryFillSymbol,
|
2891
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLBinaryFillSymbol"),
|
2892
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FillSymbol"),
|
2893
|
+
:schema_element => [
|
2894
|
+
["color", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "Color")], [0, 1]],
|
2895
|
+
["outline", ["ESRI::Soap::MapServer::LineSymbol", XSD::QName.new(nil, "Outline")], [0, 1]],
|
2896
|
+
["data", ["ESRI::Soap::MapServer::XMLPersistedObject", XSD::QName.new(nil, "Data")]]
|
2897
|
+
]
|
2898
|
+
)
|
2899
|
+
|
2900
|
+
LiteralRegistry.register(
|
2901
|
+
:class => ESRI::Soap::MapServer::GeometryDef,
|
2902
|
+
:schema_type => XSD::QName.new(NsC_93, "GeometryDef"),
|
2903
|
+
:schema_element => [
|
2904
|
+
["avgNumPoints", ["SOAP::SOAPInt", XSD::QName.new(nil, "AvgNumPoints")]],
|
2905
|
+
["geometryType", ["ESRI::Soap::MapServer::EsriGeometryType", XSD::QName.new(nil, "GeometryType")]],
|
2906
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
2907
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
2908
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")]],
|
2909
|
+
["gridSize0", ["SOAP::SOAPDouble", XSD::QName.new(nil, "GridSize0")], [0, 1]],
|
2910
|
+
["gridSize1", ["SOAP::SOAPDouble", XSD::QName.new(nil, "GridSize1")], [0, 1]],
|
2911
|
+
["gridSize2", ["SOAP::SOAPDouble", XSD::QName.new(nil, "GridSize2")], [0, 1]]
|
2912
|
+
]
|
2913
|
+
)
|
2914
|
+
|
2915
|
+
LiteralRegistry.register(
|
2916
|
+
:class => ESRI::Soap::MapServer::Field,
|
2917
|
+
:schema_type => XSD::QName.new(NsC_93, "Field"),
|
2918
|
+
:schema_element => [
|
2919
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
2920
|
+
["type", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "Type")]],
|
2921
|
+
["isNullable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsNullable")]],
|
2922
|
+
["length", ["SOAP::SOAPInt", XSD::QName.new(nil, "Length")]],
|
2923
|
+
["precision", ["SOAP::SOAPInt", XSD::QName.new(nil, "Precision")]],
|
2924
|
+
["scale", ["SOAP::SOAPInt", XSD::QName.new(nil, "Scale")]],
|
2925
|
+
["required", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Required")], [0, 1]],
|
2926
|
+
["editable", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Editable")], [0, 1]],
|
2927
|
+
["domainFixed", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DomainFixed")], [0, 1]],
|
2928
|
+
["geometryDef", ["ESRI::Soap::MapServer::GeometryDef", XSD::QName.new(nil, "GeometryDef")], [0, 1]],
|
2929
|
+
["aliasName", ["SOAP::SOAPString", XSD::QName.new(nil, "AliasName")], [0, 1]],
|
2930
|
+
["modelName", ["SOAP::SOAPString", XSD::QName.new(nil, "ModelName")], [0, 1]],
|
2931
|
+
["defaultValue", [nil, XSD::QName.new(nil, "DefaultValue")], [0, 1]],
|
2932
|
+
["domain", ["ESRI::Soap::MapServer::Domain", XSD::QName.new(nil, "Domain")], [0, 1]],
|
2933
|
+
["rasterDef", ["ESRI::Soap::MapServer::RasterDef", XSD::QName.new(nil, "RasterDef")], [0, 1]]
|
2934
|
+
]
|
2935
|
+
)
|
2936
|
+
|
2937
|
+
LiteralRegistry.register(
|
2938
|
+
:class => ESRI::Soap::MapServer::ArrayOfField,
|
2939
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfField"),
|
2940
|
+
:schema_element => [
|
2941
|
+
["field", ["ESRI::Soap::MapServer::Field[]", XSD::QName.new(nil, "Field")], [0, nil]]
|
2942
|
+
]
|
2943
|
+
)
|
2944
|
+
|
2945
|
+
LiteralRegistry.register(
|
2946
|
+
:class => ESRI::Soap::MapServer::Fields,
|
2947
|
+
:schema_type => XSD::QName.new(NsC_93, "Fields"),
|
2948
|
+
:schema_element => [
|
2949
|
+
["fieldArray", ["ESRI::Soap::MapServer::ArrayOfField", XSD::QName.new(nil, "FieldArray")]]
|
2950
|
+
]
|
2951
|
+
)
|
2952
|
+
|
2953
|
+
LiteralRegistry.register(
|
2954
|
+
:class => ESRI::Soap::MapServer::ArrayOfValue,
|
2955
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfValue"),
|
2956
|
+
:schema_element => [
|
2957
|
+
["value", ["[]", XSD::QName.new(nil, "Value")], [0, nil]]
|
2958
|
+
]
|
2959
|
+
)
|
2960
|
+
|
2961
|
+
LiteralRegistry.register(
|
2962
|
+
:class => ESRI::Soap::MapServer::Record,
|
2963
|
+
:schema_type => XSD::QName.new(NsC_93, "Record"),
|
2964
|
+
:schema_element => [
|
2965
|
+
["values", ["ESRI::Soap::MapServer::ArrayOfValue", XSD::QName.new(nil, "Values")]]
|
2966
|
+
]
|
2967
|
+
)
|
2968
|
+
|
2969
|
+
LiteralRegistry.register(
|
2970
|
+
:class => ESRI::Soap::MapServer::ArrayOfRecord,
|
2971
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfRecord"),
|
2972
|
+
:schema_element => [
|
2973
|
+
["record", ["ESRI::Soap::MapServer::Record[]", XSD::QName.new(nil, "Record")], [0, nil]]
|
2974
|
+
]
|
2975
|
+
)
|
2976
|
+
|
2977
|
+
LiteralRegistry.register(
|
2978
|
+
:class => ESRI::Soap::MapServer::RecordSet,
|
2979
|
+
:schema_type => XSD::QName.new(NsC_93, "RecordSet"),
|
2980
|
+
:schema_element => [
|
2981
|
+
["fields", ["ESRI::Soap::MapServer::Fields", XSD::QName.new(nil, "Fields")]],
|
2982
|
+
["records", ["ESRI::Soap::MapServer::ArrayOfRecord", XSD::QName.new(nil, "Records")]]
|
2983
|
+
]
|
2984
|
+
)
|
2985
|
+
|
2986
|
+
LiteralRegistry.register(
|
2987
|
+
:class => ESRI::Soap::MapServer::FIDSet,
|
2988
|
+
:schema_type => XSD::QName.new(NsC_93, "FIDSet"),
|
2989
|
+
:schema_element => [
|
2990
|
+
["fIDArray", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "FIDArray")]]
|
2991
|
+
]
|
2992
|
+
)
|
2993
|
+
|
2994
|
+
LiteralRegistry.register(
|
2995
|
+
:class => ESRI::Soap::MapServer::QueryFilter,
|
2996
|
+
:schema_type => XSD::QName.new(NsC_93, "QueryFilter"),
|
2997
|
+
:schema_element => [
|
2998
|
+
["subFields", ["SOAP::SOAPString", XSD::QName.new(nil, "SubFields")], [0, 1]],
|
2999
|
+
["whereClause", ["SOAP::SOAPString", XSD::QName.new(nil, "WhereClause")]],
|
3000
|
+
["spatialReferenceFieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "SpatialReferenceFieldName")], [0, 1]],
|
3001
|
+
["resolution", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Resolution")]],
|
3002
|
+
["outputSpatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "OutputSpatialReference")], [0, 1]],
|
3003
|
+
["fIDSet", ["ESRI::Soap::MapServer::FIDSet", XSD::QName.new(nil, "FIDSet")], [0, 1]],
|
3004
|
+
["postfixClause", ["SOAP::SOAPString", XSD::QName.new(nil, "PostfixClause")], [0, 1]],
|
3005
|
+
["filterDefs", ["ESRI::Soap::MapServer::ArrayOfFilterDef", XSD::QName.new(nil, "FilterDefs")], [0, 1]]
|
3006
|
+
]
|
3007
|
+
)
|
3008
|
+
|
3009
|
+
LiteralRegistry.register(
|
3010
|
+
:class => ESRI::Soap::MapServer::SpatialFilter,
|
3011
|
+
:schema_type => XSD::QName.new(NsC_93, "SpatialFilter"),
|
3012
|
+
:schema_basetype => XSD::QName.new(NsC_93, "QueryFilter"),
|
3013
|
+
:schema_element => [
|
3014
|
+
["subFields", ["SOAP::SOAPString", XSD::QName.new(nil, "SubFields")], [0, 1]],
|
3015
|
+
["whereClause", ["SOAP::SOAPString", XSD::QName.new(nil, "WhereClause")]],
|
3016
|
+
["spatialReferenceFieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "SpatialReferenceFieldName")], [0, 1]],
|
3017
|
+
["resolution", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Resolution")]],
|
3018
|
+
["outputSpatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "OutputSpatialReference")], [0, 1]],
|
3019
|
+
["fIDSet", ["ESRI::Soap::MapServer::FIDSet", XSD::QName.new(nil, "FIDSet")], [0, 1]],
|
3020
|
+
["postfixClause", ["SOAP::SOAPString", XSD::QName.new(nil, "PostfixClause")], [0, 1]],
|
3021
|
+
["filterDefs", ["ESRI::Soap::MapServer::ArrayOfFilterDef", XSD::QName.new(nil, "FilterDefs")], [0, 1]],
|
3022
|
+
["searchOrder", ["ESRI::Soap::MapServer::EsriSearchOrder", XSD::QName.new(nil, "SearchOrder")]],
|
3023
|
+
["spatialRel", ["ESRI::Soap::MapServer::EsriSpatialRelEnum", XSD::QName.new(nil, "SpatialRel")]],
|
3024
|
+
["spatialRelDescription", ["SOAP::SOAPString", XSD::QName.new(nil, "SpatialRelDescription")]],
|
3025
|
+
["filterGeometry", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "FilterGeometry")]],
|
3026
|
+
["geometryFieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "GeometryFieldName")]],
|
3027
|
+
["filterOwnsGeometry", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "FilterOwnsGeometry")]]
|
3028
|
+
]
|
3029
|
+
)
|
3030
|
+
|
3031
|
+
LiteralRegistry.register(
|
3032
|
+
:class => ESRI::Soap::MapServer::XMLFilterDef,
|
3033
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLFilterDef"),
|
3034
|
+
:schema_basetype => XSD::QName.new(NsC_93, "FilterDef"),
|
3035
|
+
:schema_element => [
|
3036
|
+
["fieldName", ["SOAP::SOAPString", XSD::QName.new(nil, "FieldName")]],
|
3037
|
+
["expression", ["SOAP::SOAPString", XSD::QName.new(nil, "Expression")]]
|
3038
|
+
]
|
3039
|
+
)
|
3040
|
+
|
3041
|
+
LiteralRegistry.register(
|
3042
|
+
:class => ESRI::Soap::MapServer::ArrayOfFilterDef,
|
3043
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfFilterDef"),
|
3044
|
+
:schema_element => [
|
3045
|
+
["filterDef", ["ESRI::Soap::MapServer::FilterDef[]", XSD::QName.new(nil, "FilterDef")], [0, nil]]
|
3046
|
+
]
|
3047
|
+
)
|
3048
|
+
|
3049
|
+
LiteralRegistry.register(
|
3050
|
+
:class => ESRI::Soap::MapServer::RangeDomain,
|
3051
|
+
:schema_type => XSD::QName.new(NsC_93, "RangeDomain"),
|
3052
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Domain"),
|
3053
|
+
:schema_element => [
|
3054
|
+
["domainName", ["SOAP::SOAPString", XSD::QName.new(nil, "DomainName")]],
|
3055
|
+
["fieldType", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "FieldType")]],
|
3056
|
+
["mergePolicy", ["ESRI::Soap::MapServer::EsriMergePolicyType", XSD::QName.new(nil, "MergePolicy")]],
|
3057
|
+
["splitPolicy", ["ESRI::Soap::MapServer::EsriSplitPolicyType", XSD::QName.new(nil, "SplitPolicy")]],
|
3058
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
3059
|
+
["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "Owner")], [0, 1]],
|
3060
|
+
["maxValue", [nil, XSD::QName.new(nil, "MaxValue")]],
|
3061
|
+
["minValue", [nil, XSD::QName.new(nil, "MinValue")]]
|
3062
|
+
]
|
3063
|
+
)
|
3064
|
+
|
3065
|
+
LiteralRegistry.register(
|
3066
|
+
:class => ESRI::Soap::MapServer::CodedValue,
|
3067
|
+
:schema_type => XSD::QName.new(NsC_93, "CodedValue"),
|
3068
|
+
:schema_element => [
|
3069
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "Name")]],
|
3070
|
+
["code", [nil, XSD::QName.new(nil, "Code")]]
|
3071
|
+
]
|
3072
|
+
)
|
3073
|
+
|
3074
|
+
LiteralRegistry.register(
|
3075
|
+
:class => ESRI::Soap::MapServer::ArrayOfCodedValue,
|
3076
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfCodedValue"),
|
3077
|
+
:schema_element => [
|
3078
|
+
["codedValue", ["ESRI::Soap::MapServer::CodedValue[]", XSD::QName.new(nil, "CodedValue")], [0, nil]]
|
3079
|
+
]
|
3080
|
+
)
|
3081
|
+
|
3082
|
+
LiteralRegistry.register(
|
3083
|
+
:class => ESRI::Soap::MapServer::CodedValueDomain,
|
3084
|
+
:schema_type => XSD::QName.new(NsC_93, "CodedValueDomain"),
|
3085
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Domain"),
|
3086
|
+
:schema_element => [
|
3087
|
+
["domainName", ["SOAP::SOAPString", XSD::QName.new(nil, "DomainName")]],
|
3088
|
+
["fieldType", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "FieldType")]],
|
3089
|
+
["mergePolicy", ["ESRI::Soap::MapServer::EsriMergePolicyType", XSD::QName.new(nil, "MergePolicy")]],
|
3090
|
+
["splitPolicy", ["ESRI::Soap::MapServer::EsriSplitPolicyType", XSD::QName.new(nil, "SplitPolicy")]],
|
3091
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
3092
|
+
["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "Owner")], [0, 1]],
|
3093
|
+
["codedValues", ["ESRI::Soap::MapServer::ArrayOfCodedValue", XSD::QName.new(nil, "CodedValues")]]
|
3094
|
+
]
|
3095
|
+
)
|
3096
|
+
|
3097
|
+
LiteralRegistry.register(
|
3098
|
+
:class => ESRI::Soap::MapServer::BitMaskCodedValueDomain,
|
3099
|
+
:schema_type => XSD::QName.new(NsC_93, "BitMaskCodedValueDomain"),
|
3100
|
+
:schema_basetype => XSD::QName.new(NsC_93, "CodedValueDomain"),
|
3101
|
+
:schema_element => [
|
3102
|
+
["domainName", ["SOAP::SOAPString", XSD::QName.new(nil, "DomainName")]],
|
3103
|
+
["fieldType", ["ESRI::Soap::MapServer::EsriFieldType", XSD::QName.new(nil, "FieldType")]],
|
3104
|
+
["mergePolicy", ["ESRI::Soap::MapServer::EsriMergePolicyType", XSD::QName.new(nil, "MergePolicy")]],
|
3105
|
+
["splitPolicy", ["ESRI::Soap::MapServer::EsriSplitPolicyType", XSD::QName.new(nil, "SplitPolicy")]],
|
3106
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
3107
|
+
["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "Owner")], [0, 1]],
|
3108
|
+
["codedValues", ["ESRI::Soap::MapServer::ArrayOfCodedValue", XSD::QName.new(nil, "CodedValues")]]
|
3109
|
+
]
|
3110
|
+
)
|
3111
|
+
|
3112
|
+
LiteralRegistry.register(
|
3113
|
+
:class => ESRI::Soap::MapServer::RasterDef,
|
3114
|
+
:schema_type => XSD::QName.new(NsC_93, "RasterDef"),
|
3115
|
+
:schema_element => [
|
3116
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "Description")], [0, 1]],
|
3117
|
+
["isByRef", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsByRef")], [0, 1]],
|
3118
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
3119
|
+
]
|
3120
|
+
)
|
3121
|
+
|
3122
|
+
LiteralRegistry.register(
|
3123
|
+
:class => ESRI::Soap::MapServer::GeometryResultOptions,
|
3124
|
+
:schema_type => XSD::QName.new(NsC_93, "GeometryResultOptions"),
|
3125
|
+
:schema_element => [
|
3126
|
+
["densifyGeometries", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "DensifyGeometries")], [0, 1]],
|
3127
|
+
["maximumSegmentLength", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaximumSegmentLength")], [0, 1]],
|
3128
|
+
["maximumDeviation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaximumDeviation")], [0, 1]],
|
3129
|
+
["generalizeGeometries", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "GeneralizeGeometries")], [0, 1]],
|
3130
|
+
["maximumAllowableOffset", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MaximumAllowableOffset")], [0, 1]]
|
3131
|
+
]
|
3132
|
+
)
|
3133
|
+
|
3134
|
+
LiteralRegistry.register(
|
3135
|
+
:class => ESRI::Soap::MapServer::PropertySetProperty,
|
3136
|
+
:schema_type => XSD::QName.new(NsC_93, "PropertySetProperty"),
|
3137
|
+
:schema_element => [
|
3138
|
+
["key", ["SOAP::SOAPString", XSD::QName.new(nil, "Key")]],
|
3139
|
+
["value", [nil, XSD::QName.new(nil, "Value")], [0, 1]]
|
3140
|
+
]
|
3141
|
+
)
|
3142
|
+
|
3143
|
+
LiteralRegistry.register(
|
3144
|
+
:class => ESRI::Soap::MapServer::ArrayOfPropertySetProperty,
|
3145
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfPropertySetProperty"),
|
3146
|
+
:schema_element => [
|
3147
|
+
["propertySetProperty", ["ESRI::Soap::MapServer::PropertySetProperty[]", XSD::QName.new(nil, "PropertySetProperty")], [0, nil]]
|
3148
|
+
]
|
3149
|
+
)
|
3150
|
+
|
3151
|
+
LiteralRegistry.register(
|
3152
|
+
:class => ESRI::Soap::MapServer::PropertySet,
|
3153
|
+
:schema_type => XSD::QName.new(NsC_93, "PropertySet"),
|
3154
|
+
:schema_element => [
|
3155
|
+
["propertyArray", ["ESRI::Soap::MapServer::ArrayOfPropertySetProperty", XSD::QName.new(nil, "PropertyArray")]]
|
3156
|
+
]
|
3157
|
+
)
|
3158
|
+
|
3159
|
+
LiteralRegistry.register(
|
3160
|
+
:class => ESRI::Soap::MapServer::XMLPersistedObject,
|
3161
|
+
:schema_type => XSD::QName.new(NsC_93, "XMLPersistedObject"),
|
3162
|
+
:schema_element => [
|
3163
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
3164
|
+
]
|
3165
|
+
)
|
3166
|
+
|
3167
|
+
LiteralRegistry.register(
|
3168
|
+
:class => ESRI::Soap::MapServer::NumericFormat,
|
3169
|
+
:schema_type => XSD::QName.new(NsC_93, "NumericFormat"),
|
3170
|
+
:schema_element => [
|
3171
|
+
["roundingOption", ["ESRI::Soap::MapServer::EsriRoundingOptionEnum", XSD::QName.new(nil, "RoundingOption")], [0, 1]],
|
3172
|
+
["roundingValue", ["SOAP::SOAPInt", XSD::QName.new(nil, "RoundingValue")], [0, 1]],
|
3173
|
+
["alignmentOption", ["ESRI::Soap::MapServer::EsriNumericAlignmentEnum", XSD::QName.new(nil, "AlignmentOption")], [0, 1]],
|
3174
|
+
["alignmentWidth", ["SOAP::SOAPInt", XSD::QName.new(nil, "AlignmentWidth")], [0, 1]],
|
3175
|
+
["useSeparator", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "UseSeparator")], [0, 1]],
|
3176
|
+
["zeroPad", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ZeroPad")], [0, 1]],
|
3177
|
+
["showPlus", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ShowPlus")], [0, 1]]
|
3178
|
+
]
|
3179
|
+
)
|
3180
|
+
|
3181
|
+
LiteralRegistry.register(
|
3182
|
+
:class => ESRI::Soap::MapServer::ArrayOfInt,
|
3183
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfInt"),
|
3184
|
+
:schema_element => [
|
3185
|
+
["int", ["SOAP::SOAPInt[]", XSD::QName.new(nil, "Int")], [0, nil]]
|
3186
|
+
]
|
3187
|
+
)
|
3188
|
+
|
3189
|
+
LiteralRegistry.register(
|
3190
|
+
:class => ESRI::Soap::MapServer::ArrayOfString,
|
3191
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfString"),
|
3192
|
+
:schema_element => [
|
3193
|
+
["string", ["SOAP::SOAPString[]", XSD::QName.new(nil, "String")], [0, nil]]
|
3194
|
+
]
|
3195
|
+
)
|
3196
|
+
|
3197
|
+
LiteralRegistry.register(
|
3198
|
+
:class => ESRI::Soap::MapServer::GeoTransformation,
|
3199
|
+
:schema_type => XSD::QName.new(NsC_93, "GeoTransformation"),
|
3200
|
+
:schema_element => [
|
3201
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
3202
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
3203
|
+
]
|
3204
|
+
)
|
3205
|
+
|
3206
|
+
LiteralRegistry.register(
|
3207
|
+
:class => ESRI::Soap::MapServer::ProjectedCoordinateSystem,
|
3208
|
+
:schema_type => XSD::QName.new(NsC_93, "ProjectedCoordinateSystem"),
|
3209
|
+
:schema_basetype => XSD::QName.new(NsC_93, "SpatialReference"),
|
3210
|
+
:schema_element => [
|
3211
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
3212
|
+
["xOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOrigin")], [0, 1]],
|
3213
|
+
["yOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOrigin")], [0, 1]],
|
3214
|
+
["xYScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYScale")], [0, 1]],
|
3215
|
+
["zOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZOrigin")], [0, 1]],
|
3216
|
+
["zScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZScale")], [0, 1]],
|
3217
|
+
["mOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MOrigin")], [0, 1]],
|
3218
|
+
["mScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MScale")], [0, 1]],
|
3219
|
+
["xYTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYTolerance")], [0, 1]],
|
3220
|
+
["zTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZTolerance")], [0, 1]],
|
3221
|
+
["mTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MTolerance")], [0, 1]],
|
3222
|
+
["highPrecision", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HighPrecision")], [0, 1]],
|
3223
|
+
["leftLongitude", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LeftLongitude")], [0, 1]],
|
3224
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
3225
|
+
]
|
3226
|
+
)
|
3227
|
+
|
3228
|
+
LiteralRegistry.register(
|
3229
|
+
:class => ESRI::Soap::MapServer::GeographicCoordinateSystem,
|
3230
|
+
:schema_type => XSD::QName.new(NsC_93, "GeographicCoordinateSystem"),
|
3231
|
+
:schema_basetype => XSD::QName.new(NsC_93, "SpatialReference"),
|
3232
|
+
:schema_element => [
|
3233
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
3234
|
+
["xOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOrigin")], [0, 1]],
|
3235
|
+
["yOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOrigin")], [0, 1]],
|
3236
|
+
["xYScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYScale")], [0, 1]],
|
3237
|
+
["zOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZOrigin")], [0, 1]],
|
3238
|
+
["zScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZScale")], [0, 1]],
|
3239
|
+
["mOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MOrigin")], [0, 1]],
|
3240
|
+
["mScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MScale")], [0, 1]],
|
3241
|
+
["xYTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYTolerance")], [0, 1]],
|
3242
|
+
["zTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZTolerance")], [0, 1]],
|
3243
|
+
["mTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MTolerance")], [0, 1]],
|
3244
|
+
["highPrecision", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HighPrecision")], [0, 1]],
|
3245
|
+
["leftLongitude", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LeftLongitude")], [0, 1]],
|
3246
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
3247
|
+
]
|
3248
|
+
)
|
3249
|
+
|
3250
|
+
LiteralRegistry.register(
|
3251
|
+
:class => ESRI::Soap::MapServer::UnknownCoordinateSystem,
|
3252
|
+
:schema_type => XSD::QName.new(NsC_93, "UnknownCoordinateSystem"),
|
3253
|
+
:schema_basetype => XSD::QName.new(NsC_93, "SpatialReference"),
|
3254
|
+
:schema_element => [
|
3255
|
+
["wKT", ["SOAP::SOAPString", XSD::QName.new(nil, "WKT")], [0, 1]],
|
3256
|
+
["xOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XOrigin")], [0, 1]],
|
3257
|
+
["yOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YOrigin")], [0, 1]],
|
3258
|
+
["xYScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYScale")], [0, 1]],
|
3259
|
+
["zOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZOrigin")], [0, 1]],
|
3260
|
+
["zScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZScale")], [0, 1]],
|
3261
|
+
["mOrigin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MOrigin")], [0, 1]],
|
3262
|
+
["mScale", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MScale")], [0, 1]],
|
3263
|
+
["xYTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XYTolerance")], [0, 1]],
|
3264
|
+
["zTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZTolerance")], [0, 1]],
|
3265
|
+
["mTolerance", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MTolerance")], [0, 1]],
|
3266
|
+
["highPrecision", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HighPrecision")], [0, 1]],
|
3267
|
+
["leftLongitude", ["SOAP::SOAPDouble", XSD::QName.new(nil, "LeftLongitude")], [0, 1]],
|
3268
|
+
["wKID", ["SOAP::SOAPInt", XSD::QName.new(nil, "WKID")], [0, 1]]
|
3269
|
+
]
|
3270
|
+
)
|
3271
|
+
|
3272
|
+
LiteralRegistry.register(
|
3273
|
+
:class => ESRI::Soap::MapServer::Geometry,
|
3274
|
+
:schema_type => XSD::QName.new(NsC_93, "Geometry"),
|
3275
|
+
:schema_element => []
|
3276
|
+
)
|
3277
|
+
|
3278
|
+
LiteralRegistry.register(
|
3279
|
+
:class => ESRI::Soap::MapServer::EnvelopeN,
|
3280
|
+
:schema_type => XSD::QName.new(NsC_93, "EnvelopeN"),
|
3281
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Envelope"),
|
3282
|
+
:schema_element => [
|
3283
|
+
["xMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XMin")]],
|
3284
|
+
["yMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YMin")]],
|
3285
|
+
["xMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "XMax")]],
|
3286
|
+
["yMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "YMax")]],
|
3287
|
+
["zMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZMin")], [0, 1]],
|
3288
|
+
["zMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ZMax")], [0, 1]],
|
3289
|
+
["mMin", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MMin")], [0, 1]],
|
3290
|
+
["mMax", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MMax")], [0, 1]],
|
3291
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
3292
|
+
]
|
3293
|
+
)
|
3294
|
+
|
3295
|
+
LiteralRegistry.register(
|
3296
|
+
:class => ESRI::Soap::MapServer::EnvelopeB,
|
3297
|
+
:schema_type => XSD::QName.new(NsC_93, "EnvelopeB"),
|
3298
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Envelope"),
|
3299
|
+
:schema_element => [
|
3300
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
3301
|
+
]
|
3302
|
+
)
|
3303
|
+
|
3304
|
+
LiteralRegistry.register(
|
3305
|
+
:class => ESRI::Soap::MapServer::PointN,
|
3306
|
+
:schema_type => XSD::QName.new(NsC_93, "PointN"),
|
3307
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Point"),
|
3308
|
+
:schema_element => [
|
3309
|
+
["x", ["SOAP::SOAPDouble", XSD::QName.new(nil, "X")]],
|
3310
|
+
["y", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Y")]],
|
3311
|
+
["m", ["SOAP::SOAPDouble", XSD::QName.new(nil, "M")], [0, 1]],
|
3312
|
+
["z", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Z")], [0, 1]],
|
3313
|
+
["iD", ["SOAP::SOAPInt", XSD::QName.new(nil, "ID")], [0, 1]],
|
3314
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
3315
|
+
]
|
3316
|
+
)
|
3317
|
+
|
3318
|
+
LiteralRegistry.register(
|
3319
|
+
:class => ESRI::Soap::MapServer::PointB,
|
3320
|
+
:schema_type => XSD::QName.new(NsC_93, "PointB"),
|
3321
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Point"),
|
3322
|
+
:schema_element => [
|
3323
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
3324
|
+
]
|
3325
|
+
)
|
3326
|
+
|
3327
|
+
LiteralRegistry.register(
|
3328
|
+
:class => ESRI::Soap::MapServer::MultipointB,
|
3329
|
+
:schema_type => XSD::QName.new(NsC_93, "MultipointB"),
|
3330
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Multipoint"),
|
3331
|
+
:schema_element => [
|
3332
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
3333
|
+
]
|
3334
|
+
)
|
3335
|
+
|
3336
|
+
LiteralRegistry.register(
|
3337
|
+
:class => ESRI::Soap::MapServer::MultipointN,
|
3338
|
+
:schema_type => XSD::QName.new(NsC_93, "MultipointN"),
|
3339
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Multipoint"),
|
3340
|
+
:schema_element => [
|
3341
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
3342
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
3343
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
3344
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
3345
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]],
|
3346
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
3347
|
+
]
|
3348
|
+
)
|
3349
|
+
|
3350
|
+
LiteralRegistry.register(
|
3351
|
+
:class => ESRI::Soap::MapServer::Line,
|
3352
|
+
:schema_type => XSD::QName.new(NsC_93, "Line"),
|
3353
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
3354
|
+
:schema_element => [
|
3355
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
3356
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]]
|
3357
|
+
]
|
3358
|
+
)
|
3359
|
+
|
3360
|
+
LiteralRegistry.register(
|
3361
|
+
:class => ESRI::Soap::MapServer::EllipticArc,
|
3362
|
+
:schema_type => XSD::QName.new(NsC_93, "EllipticArc"),
|
3363
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
3364
|
+
:schema_element => [
|
3365
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
3366
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]],
|
3367
|
+
["ellipseStd", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "EllipseStd")]],
|
3368
|
+
["centerPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "CenterPoint")]],
|
3369
|
+
["rotation", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Rotation")]],
|
3370
|
+
["minorMajorRatio", ["SOAP::SOAPDouble", XSD::QName.new(nil, "MinorMajorRatio")]],
|
3371
|
+
["isCounterClockWise", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsCounterClockWise")]],
|
3372
|
+
["isMinor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsMinor")]]
|
3373
|
+
]
|
3374
|
+
)
|
3375
|
+
|
3376
|
+
LiteralRegistry.register(
|
3377
|
+
:class => ESRI::Soap::MapServer::CircularArc,
|
3378
|
+
:schema_type => XSD::QName.new(NsC_93, "CircularArc"),
|
3379
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
3380
|
+
:schema_element => [
|
3381
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
3382
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]],
|
3383
|
+
["centerPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "CenterPoint")]],
|
3384
|
+
["fromAngle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "FromAngle")], [0, 1]],
|
3385
|
+
["toAngle", ["SOAP::SOAPDouble", XSD::QName.new(nil, "ToAngle")], [0, 1]],
|
3386
|
+
["isCounterClockwise", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsCounterClockwise")]],
|
3387
|
+
["isMinor", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsMinor")]],
|
3388
|
+
["isLine", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "IsLine")]]
|
3389
|
+
]
|
3390
|
+
)
|
3391
|
+
|
3392
|
+
LiteralRegistry.register(
|
3393
|
+
:class => ESRI::Soap::MapServer::BezierCurve,
|
3394
|
+
:schema_type => XSD::QName.new(NsC_93, "BezierCurve"),
|
3395
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Segment"),
|
3396
|
+
:schema_element => [
|
3397
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
3398
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]],
|
3399
|
+
["degree", ["SOAP::SOAPInt", XSD::QName.new(nil, "Degree")]],
|
3400
|
+
["controlPointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "ControlPointArray")]]
|
3401
|
+
]
|
3402
|
+
)
|
3403
|
+
|
3404
|
+
LiteralRegistry.register(
|
3405
|
+
:class => ESRI::Soap::MapServer::Path,
|
3406
|
+
:schema_type => XSD::QName.new(NsC_93, "Path"),
|
3407
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Curve"),
|
3408
|
+
:schema_element => [
|
3409
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]],
|
3410
|
+
["segmentArray", ["ESRI::Soap::MapServer::ArrayOfSegment", XSD::QName.new(nil, "SegmentArray")], [0, 1]]
|
3411
|
+
]
|
3412
|
+
)
|
3413
|
+
|
3414
|
+
LiteralRegistry.register(
|
3415
|
+
:class => ESRI::Soap::MapServer::Ring,
|
3416
|
+
:schema_type => XSD::QName.new(NsC_93, "Ring"),
|
3417
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Path"),
|
3418
|
+
:schema_element => [
|
3419
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]],
|
3420
|
+
["segmentArray", ["ESRI::Soap::MapServer::ArrayOfSegment", XSD::QName.new(nil, "SegmentArray")], [0, 1]]
|
3421
|
+
]
|
3422
|
+
)
|
3423
|
+
|
3424
|
+
LiteralRegistry.register(
|
3425
|
+
:class => ESRI::Soap::MapServer::PolygonN,
|
3426
|
+
:schema_type => XSD::QName.new(NsC_93, "PolygonN"),
|
3427
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polygon"),
|
3428
|
+
:schema_element => [
|
3429
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
3430
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
3431
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
3432
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
3433
|
+
["ringArray", ["ESRI::Soap::MapServer::ArrayOfRing", XSD::QName.new(nil, "RingArray")]],
|
3434
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
3435
|
+
]
|
3436
|
+
)
|
3437
|
+
|
3438
|
+
LiteralRegistry.register(
|
3439
|
+
:class => ESRI::Soap::MapServer::PolygonB,
|
3440
|
+
:schema_type => XSD::QName.new(NsC_93, "PolygonB"),
|
3441
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polygon"),
|
3442
|
+
:schema_element => [
|
3443
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
3444
|
+
]
|
3445
|
+
)
|
3446
|
+
|
3447
|
+
LiteralRegistry.register(
|
3448
|
+
:class => ESRI::Soap::MapServer::PolylineN,
|
3449
|
+
:schema_type => XSD::QName.new(NsC_93, "PolylineN"),
|
3450
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polyline"),
|
3451
|
+
:schema_element => [
|
3452
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
3453
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
3454
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
3455
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")], [0, 1]],
|
3456
|
+
["pathArray", ["ESRI::Soap::MapServer::ArrayOfPath", XSD::QName.new(nil, "PathArray")]],
|
3457
|
+
["spatialReference", ["ESRI::Soap::MapServer::SpatialReference", XSD::QName.new(nil, "SpatialReference")], [0, 1]]
|
3458
|
+
]
|
3459
|
+
)
|
3460
|
+
|
3461
|
+
LiteralRegistry.register(
|
3462
|
+
:class => ESRI::Soap::MapServer::PolylineB,
|
3463
|
+
:schema_type => XSD::QName.new(NsC_93, "PolylineB"),
|
3464
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Polyline"),
|
3465
|
+
:schema_element => [
|
3466
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
3467
|
+
]
|
3468
|
+
)
|
3469
|
+
|
3470
|
+
LiteralRegistry.register(
|
3471
|
+
:class => ESRI::Soap::MapServer::ArrayOfPoint,
|
3472
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfPoint"),
|
3473
|
+
:schema_element => [
|
3474
|
+
["point", ["ESRI::Soap::MapServer::Point[]", XSD::QName.new(nil, "Point")], [0, nil]]
|
3475
|
+
]
|
3476
|
+
)
|
3477
|
+
|
3478
|
+
LiteralRegistry.register(
|
3479
|
+
:class => ESRI::Soap::MapServer::ArrayOfPath,
|
3480
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfPath"),
|
3481
|
+
:schema_element => [
|
3482
|
+
["path", ["ESRI::Soap::MapServer::Path[]", XSD::QName.new(nil, "Path")], [0, nil]]
|
3483
|
+
]
|
3484
|
+
)
|
3485
|
+
|
3486
|
+
LiteralRegistry.register(
|
3487
|
+
:class => ESRI::Soap::MapServer::ArrayOfRing,
|
3488
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfRing"),
|
3489
|
+
:schema_element => [
|
3490
|
+
["ring", ["ESRI::Soap::MapServer::Ring[]", XSD::QName.new(nil, "Ring")], [0, nil]]
|
3491
|
+
]
|
3492
|
+
)
|
3493
|
+
|
3494
|
+
LiteralRegistry.register(
|
3495
|
+
:class => ESRI::Soap::MapServer::ArrayOfSegment,
|
3496
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfSegment"),
|
3497
|
+
:schema_element => [
|
3498
|
+
["segment", ["ESRI::Soap::MapServer::Segment[]", XSD::QName.new(nil, "Segment")], [0, nil]]
|
3499
|
+
]
|
3500
|
+
)
|
3501
|
+
|
3502
|
+
LiteralRegistry.register(
|
3503
|
+
:class => ESRI::Soap::MapServer::MultiPatchB,
|
3504
|
+
:schema_type => XSD::QName.new(NsC_93, "MultiPatchB"),
|
3505
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MultiPatch"),
|
3506
|
+
:schema_element => [
|
3507
|
+
["bytes", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Bytes")]]
|
3508
|
+
]
|
3509
|
+
)
|
3510
|
+
|
3511
|
+
LiteralRegistry.register(
|
3512
|
+
:class => ESRI::Soap::MapServer::MultiPatchN,
|
3513
|
+
:schema_type => XSD::QName.new(NsC_93, "MultiPatchN"),
|
3514
|
+
:schema_basetype => XSD::QName.new(NsC_93, "MultiPatch"),
|
3515
|
+
:schema_element => [
|
3516
|
+
["hasID", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasID")]],
|
3517
|
+
["hasZ", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasZ")]],
|
3518
|
+
["hasM", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "HasM")]],
|
3519
|
+
["extent", ["ESRI::Soap::MapServer::Envelope", XSD::QName.new(nil, "Extent")]],
|
3520
|
+
["surfacePatchArray", ["ESRI::Soap::MapServer::ArrayOfSurfacePatch", XSD::QName.new(nil, "SurfacePatchArray")]]
|
3521
|
+
]
|
3522
|
+
)
|
3523
|
+
|
3524
|
+
LiteralRegistry.register(
|
3525
|
+
:class => ESRI::Soap::MapServer::ArrayOfSurfacePatch,
|
3526
|
+
:schema_type => XSD::QName.new(NsC_93, "ArrayOfSurfacePatch"),
|
3527
|
+
:schema_element => [
|
3528
|
+
["surfacePatch", ["ESRI::Soap::MapServer::Geometry[]", XSD::QName.new(nil, "SurfacePatch")], [0, nil]]
|
3529
|
+
]
|
3530
|
+
)
|
3531
|
+
|
3532
|
+
LiteralRegistry.register(
|
3533
|
+
:class => ESRI::Soap::MapServer::TriangleFan,
|
3534
|
+
:schema_type => XSD::QName.new(NsC_93, "TriangleFan"),
|
3535
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Geometry"),
|
3536
|
+
:schema_element => [
|
3537
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]]
|
3538
|
+
]
|
3539
|
+
)
|
3540
|
+
|
3541
|
+
LiteralRegistry.register(
|
3542
|
+
:class => ESRI::Soap::MapServer::TriangleStrip,
|
3543
|
+
:schema_type => XSD::QName.new(NsC_93, "TriangleStrip"),
|
3544
|
+
:schema_basetype => XSD::QName.new(NsC_93, "Geometry"),
|
3545
|
+
:schema_element => [
|
3546
|
+
["pointArray", ["ESRI::Soap::MapServer::ArrayOfPoint", XSD::QName.new(nil, "PointArray")], [0, 1]]
|
3547
|
+
]
|
3548
|
+
)
|
3549
|
+
|
3550
|
+
LiteralRegistry.register(
|
3551
|
+
:class => ESRI::Soap::MapServer::EsriIdentifyOption,
|
3552
|
+
:schema_type => XSD::QName.new(NsC_93, "esriIdentifyOption")
|
3553
|
+
)
|
3554
|
+
|
3555
|
+
LiteralRegistry.register(
|
3556
|
+
:class => ESRI::Soap::MapServer::EsriFindOption,
|
3557
|
+
:schema_type => XSD::QName.new(NsC_93, "esriFindOption")
|
3558
|
+
)
|
3559
|
+
|
3560
|
+
LiteralRegistry.register(
|
3561
|
+
:class => ESRI::Soap::MapServer::EsriImageFormat,
|
3562
|
+
:schema_type => XSD::QName.new(NsC_93, "esriImageFormat")
|
3563
|
+
)
|
3564
|
+
|
3565
|
+
LiteralRegistry.register(
|
3566
|
+
:class => ESRI::Soap::MapServer::EsriScaleBarPos,
|
3567
|
+
:schema_type => XSD::QName.new(NsC_93, "esriScaleBarPos")
|
3568
|
+
)
|
3569
|
+
|
3570
|
+
LiteralRegistry.register(
|
3571
|
+
:class => ESRI::Soap::MapServer::EsriVertPosEnum,
|
3572
|
+
:schema_type => XSD::QName.new(NsC_93, "esriVertPosEnum")
|
3573
|
+
)
|
3574
|
+
|
3575
|
+
LiteralRegistry.register(
|
3576
|
+
:class => ESRI::Soap::MapServer::EsriScaleBarFrequency,
|
3577
|
+
:schema_type => XSD::QName.new(NsC_93, "esriScaleBarFrequency")
|
3578
|
+
)
|
3579
|
+
|
3580
|
+
LiteralRegistry.register(
|
3581
|
+
:class => ESRI::Soap::MapServer::EsriScaleBarResizeHint,
|
3582
|
+
:schema_type => XSD::QName.new(NsC_93, "esriScaleBarResizeHint")
|
3583
|
+
)
|
3584
|
+
|
3585
|
+
LiteralRegistry.register(
|
3586
|
+
:class => ESRI::Soap::MapServer::EsriImageReturnType,
|
3587
|
+
:schema_type => XSD::QName.new(NsC_93, "esriImageReturnType")
|
3588
|
+
)
|
3589
|
+
|
3590
|
+
LiteralRegistry.register(
|
3591
|
+
:class => ESRI::Soap::MapServer::EsriCachedMapServiceType,
|
3592
|
+
:schema_type => XSD::QName.new(NsC_93, "esriCachedMapServiceType")
|
3593
|
+
)
|
3594
|
+
|
3595
|
+
LiteralRegistry.register(
|
3596
|
+
:class => ESRI::Soap::MapServer::EsriQueryResultFormat,
|
3597
|
+
:schema_type => XSD::QName.new(NsC_93, "esriQueryResultFormat")
|
3598
|
+
)
|
3599
|
+
|
3600
|
+
LiteralRegistry.register(
|
3601
|
+
:class => ESRI::Soap::MapServer::EsriSimpleFillStyle,
|
3602
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSimpleFillStyle")
|
3603
|
+
)
|
3604
|
+
|
3605
|
+
LiteralRegistry.register(
|
3606
|
+
:class => ESRI::Soap::MapServer::EsriSimpleLineStyle,
|
3607
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSimpleLineStyle")
|
3608
|
+
)
|
3609
|
+
|
3610
|
+
LiteralRegistry.register(
|
3611
|
+
:class => ESRI::Soap::MapServer::EsriSimpleMarkerStyle,
|
3612
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSimpleMarkerStyle")
|
3613
|
+
)
|
3614
|
+
|
3615
|
+
LiteralRegistry.register(
|
3616
|
+
:class => ESRI::Soap::MapServer::EsriTextHorizontalAlignment,
|
3617
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextHorizontalAlignment")
|
3618
|
+
)
|
3619
|
+
|
3620
|
+
LiteralRegistry.register(
|
3621
|
+
:class => ESRI::Soap::MapServer::EsriTextVerticalAlignment,
|
3622
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextVerticalAlignment")
|
3623
|
+
)
|
3624
|
+
|
3625
|
+
LiteralRegistry.register(
|
3626
|
+
:class => ESRI::Soap::MapServer::EsriTextPosition,
|
3627
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextPosition")
|
3628
|
+
)
|
3629
|
+
|
3630
|
+
LiteralRegistry.register(
|
3631
|
+
:class => ESRI::Soap::MapServer::EsriTextCase,
|
3632
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextCase")
|
3633
|
+
)
|
3634
|
+
|
3635
|
+
LiteralRegistry.register(
|
3636
|
+
:class => ESRI::Soap::MapServer::EsriTextDirection,
|
3637
|
+
:schema_type => XSD::QName.new(NsC_93, "esriTextDirection")
|
3638
|
+
)
|
3639
|
+
|
3640
|
+
LiteralRegistry.register(
|
3641
|
+
:class => ESRI::Soap::MapServer::EsriMaskStyle,
|
3642
|
+
:schema_type => XSD::QName.new(NsC_93, "esriMaskStyle")
|
3643
|
+
)
|
3644
|
+
|
3645
|
+
LiteralRegistry.register(
|
3646
|
+
:class => ESRI::Soap::MapServer::EsriFieldType,
|
3647
|
+
:schema_type => XSD::QName.new(NsC_93, "esriFieldType")
|
3648
|
+
)
|
3649
|
+
|
3650
|
+
LiteralRegistry.register(
|
3651
|
+
:class => ESRI::Soap::MapServer::EsriMergePolicyType,
|
3652
|
+
:schema_type => XSD::QName.new(NsC_93, "esriMergePolicyType")
|
3653
|
+
)
|
3654
|
+
|
3655
|
+
LiteralRegistry.register(
|
3656
|
+
:class => ESRI::Soap::MapServer::EsriSplitPolicyType,
|
3657
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSplitPolicyType")
|
3658
|
+
)
|
3659
|
+
|
3660
|
+
LiteralRegistry.register(
|
3661
|
+
:class => ESRI::Soap::MapServer::EsriSearchOrder,
|
3662
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSearchOrder")
|
3663
|
+
)
|
3664
|
+
|
3665
|
+
LiteralRegistry.register(
|
3666
|
+
:class => ESRI::Soap::MapServer::EsriSpatialRelEnum,
|
3667
|
+
:schema_type => XSD::QName.new(NsC_93, "esriSpatialRelEnum")
|
3668
|
+
)
|
3669
|
+
|
3670
|
+
LiteralRegistry.register(
|
3671
|
+
:class => ESRI::Soap::MapServer::EsriUnits,
|
3672
|
+
:schema_type => XSD::QName.new(NsC_93, "esriUnits")
|
3673
|
+
)
|
3674
|
+
|
3675
|
+
LiteralRegistry.register(
|
3676
|
+
:class => ESRI::Soap::MapServer::EsriRoundingOptionEnum,
|
3677
|
+
:schema_type => XSD::QName.new(NsC_93, "esriRoundingOptionEnum")
|
3678
|
+
)
|
3679
|
+
|
3680
|
+
LiteralRegistry.register(
|
3681
|
+
:class => ESRI::Soap::MapServer::EsriNumericAlignmentEnum,
|
3682
|
+
:schema_type => XSD::QName.new(NsC_93, "esriNumericAlignmentEnum")
|
3683
|
+
)
|
3684
|
+
|
3685
|
+
LiteralRegistry.register(
|
3686
|
+
:class => ESRI::Soap::MapServer::EsriGeometryType,
|
3687
|
+
:schema_type => XSD::QName.new(NsC_93, "esriGeometryType")
|
3688
|
+
)
|
3689
|
+
|
3690
|
+
LiteralRegistry.register(
|
3691
|
+
:class => ESRI::Soap::MapServer::GetDocumentInfo,
|
3692
|
+
:schema_name => XSD::QName.new(NsC_93, "GetDocumentInfo"),
|
3693
|
+
:schema_element => []
|
3694
|
+
)
|
3695
|
+
|
3696
|
+
LiteralRegistry.register(
|
3697
|
+
:class => ESRI::Soap::MapServer::GetDocumentInfoResponse,
|
3698
|
+
:schema_name => XSD::QName.new(NsC_93, "GetDocumentInfoResponse"),
|
3699
|
+
:schema_element => [
|
3700
|
+
["result", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Result")]]
|
3701
|
+
]
|
3702
|
+
)
|
3703
|
+
|
3704
|
+
LiteralRegistry.register(
|
3705
|
+
:class => ESRI::Soap::MapServer::GetMapCount,
|
3706
|
+
:schema_name => XSD::QName.new(NsC_93, "GetMapCount"),
|
3707
|
+
:schema_element => []
|
3708
|
+
)
|
3709
|
+
|
3710
|
+
LiteralRegistry.register(
|
3711
|
+
:class => ESRI::Soap::MapServer::GetMapCountResponse,
|
3712
|
+
:schema_name => XSD::QName.new(NsC_93, "GetMapCountResponse"),
|
3713
|
+
:schema_element => [
|
3714
|
+
["result", ["SOAP::SOAPInt", XSD::QName.new(nil, "Result")]]
|
3715
|
+
]
|
3716
|
+
)
|
3717
|
+
|
3718
|
+
LiteralRegistry.register(
|
3719
|
+
:class => ESRI::Soap::MapServer::GetMapName,
|
3720
|
+
:schema_name => XSD::QName.new(NsC_93, "GetMapName"),
|
3721
|
+
:schema_element => [
|
3722
|
+
["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "Index")]]
|
3723
|
+
]
|
3724
|
+
)
|
3725
|
+
|
3726
|
+
LiteralRegistry.register(
|
3727
|
+
:class => ESRI::Soap::MapServer::GetMapNameResponse,
|
3728
|
+
:schema_name => XSD::QName.new(NsC_93, "GetMapNameResponse"),
|
3729
|
+
:schema_element => [
|
3730
|
+
["result", ["SOAP::SOAPString", XSD::QName.new(nil, "Result")]]
|
3731
|
+
]
|
3732
|
+
)
|
3733
|
+
|
3734
|
+
LiteralRegistry.register(
|
3735
|
+
:class => ESRI::Soap::MapServer::GetDefaultMapName,
|
3736
|
+
:schema_name => XSD::QName.new(NsC_93, "GetDefaultMapName"),
|
3737
|
+
:schema_element => []
|
3738
|
+
)
|
3739
|
+
|
3740
|
+
LiteralRegistry.register(
|
3741
|
+
:class => ESRI::Soap::MapServer::GetDefaultMapNameResponse,
|
3742
|
+
:schema_name => XSD::QName.new(NsC_93, "GetDefaultMapNameResponse"),
|
3743
|
+
:schema_element => [
|
3744
|
+
["result", ["SOAP::SOAPString", XSD::QName.new(nil, "Result")]]
|
3745
|
+
]
|
3746
|
+
)
|
3747
|
+
|
3748
|
+
LiteralRegistry.register(
|
3749
|
+
:class => ESRI::Soap::MapServer::GetServerInfo,
|
3750
|
+
:schema_name => XSD::QName.new(NsC_93, "GetServerInfo"),
|
3751
|
+
:schema_element => [
|
3752
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
3753
|
+
]
|
3754
|
+
)
|
3755
|
+
|
3756
|
+
LiteralRegistry.register(
|
3757
|
+
:class => ESRI::Soap::MapServer::GetServerInfoResponse,
|
3758
|
+
:schema_name => XSD::QName.new(NsC_93, "GetServerInfoResponse"),
|
3759
|
+
:schema_element => [
|
3760
|
+
["result", ["ESRI::Soap::MapServer::MapServerInfo", XSD::QName.new(nil, "Result")]]
|
3761
|
+
]
|
3762
|
+
)
|
3763
|
+
|
3764
|
+
LiteralRegistry.register(
|
3765
|
+
:class => ESRI::Soap::MapServer::ExportMapImage,
|
3766
|
+
:schema_name => XSD::QName.new(NsC_93, "ExportMapImage"),
|
3767
|
+
:schema_element => [
|
3768
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
3769
|
+
["imageDescription", ["ESRI::Soap::MapServer::ImageDescription", XSD::QName.new(nil, "ImageDescription")]]
|
3770
|
+
]
|
3771
|
+
)
|
3772
|
+
|
3773
|
+
LiteralRegistry.register(
|
3774
|
+
:class => ESRI::Soap::MapServer::ExportMapImageResponse,
|
3775
|
+
:schema_name => XSD::QName.new(NsC_93, "ExportMapImageResponse"),
|
3776
|
+
:schema_element => [
|
3777
|
+
["result", ["ESRI::Soap::MapServer::MapImage", XSD::QName.new(nil, "Result")]]
|
3778
|
+
]
|
3779
|
+
)
|
3780
|
+
|
3781
|
+
LiteralRegistry.register(
|
3782
|
+
:class => ESRI::Soap::MapServer::ExportScaleBar,
|
3783
|
+
:schema_name => XSD::QName.new(NsC_93, "ExportScaleBar"),
|
3784
|
+
:schema_element => [
|
3785
|
+
["scaleBar", ["ESRI::Soap::MapServer::ScaleBar", XSD::QName.new(nil, "ScaleBar")], [0, 1]],
|
3786
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
3787
|
+
["mapDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "MapDisplay")]],
|
3788
|
+
["backGroundColor", ["ESRI::Soap::MapServer::Color", XSD::QName.new(nil, "BackGroundColor")], [0, 1]],
|
3789
|
+
["imageDescription", ["ESRI::Soap::MapServer::ImageDescription", XSD::QName.new(nil, "ImageDescription")]]
|
3790
|
+
]
|
3791
|
+
)
|
3792
|
+
|
3793
|
+
LiteralRegistry.register(
|
3794
|
+
:class => ESRI::Soap::MapServer::ExportScaleBarResponse,
|
3795
|
+
:schema_name => XSD::QName.new(NsC_93, "ExportScaleBarResponse"),
|
3796
|
+
:schema_element => [
|
3797
|
+
["result", ["ESRI::Soap::MapServer::ImageResult", XSD::QName.new(nil, "Result")]]
|
3798
|
+
]
|
3799
|
+
)
|
3800
|
+
|
3801
|
+
LiteralRegistry.register(
|
3802
|
+
:class => ESRI::Soap::MapServer::Find,
|
3803
|
+
:schema_name => XSD::QName.new(NsC_93, "Find"),
|
3804
|
+
:schema_element => [
|
3805
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
3806
|
+
["mapImageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "MapImageDisplay")]],
|
3807
|
+
["searchString", ["SOAP::SOAPString", XSD::QName.new(nil, "SearchString")]],
|
3808
|
+
["contains", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Contains")]],
|
3809
|
+
["searchFields", ["SOAP::SOAPString", XSD::QName.new(nil, "SearchFields")]],
|
3810
|
+
["findOption", ["ESRI::Soap::MapServer::EsriFindOption", XSD::QName.new(nil, "FindOption")]],
|
3811
|
+
["layerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "LayerIDs")]]
|
3812
|
+
]
|
3813
|
+
)
|
3814
|
+
|
3815
|
+
LiteralRegistry.register(
|
3816
|
+
:class => ESRI::Soap::MapServer::FindResponse,
|
3817
|
+
:schema_name => XSD::QName.new(NsC_93, "FindResponse"),
|
3818
|
+
:schema_element => [
|
3819
|
+
["result", ["ESRI::Soap::MapServer::ArrayOfMapServerFindResult", XSD::QName.new(nil, "Result")]]
|
3820
|
+
]
|
3821
|
+
)
|
3822
|
+
|
3823
|
+
LiteralRegistry.register(
|
3824
|
+
:class => ESRI::Soap::MapServer::Identify,
|
3825
|
+
:schema_name => XSD::QName.new(NsC_93, "Identify"),
|
3826
|
+
:schema_element => [
|
3827
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
3828
|
+
["mapImageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "MapImageDisplay")]],
|
3829
|
+
["searchShape", ["ESRI::Soap::MapServer::Geometry", XSD::QName.new(nil, "SearchShape")]],
|
3830
|
+
["tolerance", ["SOAP::SOAPInt", XSD::QName.new(nil, "Tolerance")]],
|
3831
|
+
["identifyOption", ["ESRI::Soap::MapServer::EsriIdentifyOption", XSD::QName.new(nil, "IdentifyOption")]],
|
3832
|
+
["layerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "LayerIDs")]]
|
3833
|
+
]
|
3834
|
+
)
|
3835
|
+
|
3836
|
+
LiteralRegistry.register(
|
3837
|
+
:class => ESRI::Soap::MapServer::IdentifyResponse,
|
3838
|
+
:schema_name => XSD::QName.new(NsC_93, "IdentifyResponse"),
|
3839
|
+
:schema_element => [
|
3840
|
+
["result", ["ESRI::Soap::MapServer::ArrayOfMapServerIdentifyResult", XSD::QName.new(nil, "Result")]]
|
3841
|
+
]
|
3842
|
+
)
|
3843
|
+
|
3844
|
+
LiteralRegistry.register(
|
3845
|
+
:class => ESRI::Soap::MapServer::QueryFeatureCount,
|
3846
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureCount"),
|
3847
|
+
:schema_element => [
|
3848
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
3849
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
3850
|
+
["queryFilter", ["ESRI::Soap::MapServer::QueryFilter", XSD::QName.new(nil, "QueryFilter")]]
|
3851
|
+
]
|
3852
|
+
)
|
3853
|
+
|
3854
|
+
LiteralRegistry.register(
|
3855
|
+
:class => ESRI::Soap::MapServer::QueryFeatureCountResponse,
|
3856
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureCountResponse"),
|
3857
|
+
:schema_element => [
|
3858
|
+
["result", ["SOAP::SOAPInt", XSD::QName.new(nil, "Result")]]
|
3859
|
+
]
|
3860
|
+
)
|
3861
|
+
|
3862
|
+
LiteralRegistry.register(
|
3863
|
+
:class => ESRI::Soap::MapServer::QueryFeatureIDs,
|
3864
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureIDs"),
|
3865
|
+
:schema_element => [
|
3866
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
3867
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
3868
|
+
["queryFilter", ["ESRI::Soap::MapServer::QueryFilter", XSD::QName.new(nil, "QueryFilter")]]
|
3869
|
+
]
|
3870
|
+
)
|
3871
|
+
|
3872
|
+
LiteralRegistry.register(
|
3873
|
+
:class => ESRI::Soap::MapServer::QueryFeatureIDsResponse,
|
3874
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureIDsResponse"),
|
3875
|
+
:schema_element => [
|
3876
|
+
["result", ["ESRI::Soap::MapServer::FIDSet", XSD::QName.new(nil, "Result")]]
|
3877
|
+
]
|
3878
|
+
)
|
3879
|
+
|
3880
|
+
LiteralRegistry.register(
|
3881
|
+
:class => ESRI::Soap::MapServer::QueryFeatureData,
|
3882
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureData"),
|
3883
|
+
:schema_element => [
|
3884
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
3885
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
3886
|
+
["queryFilter", ["ESRI::Soap::MapServer::QueryFilter", XSD::QName.new(nil, "QueryFilter")]]
|
3887
|
+
]
|
3888
|
+
)
|
3889
|
+
|
3890
|
+
LiteralRegistry.register(
|
3891
|
+
:class => ESRI::Soap::MapServer::QueryFeatureDataResponse,
|
3892
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureDataResponse"),
|
3893
|
+
:schema_element => [
|
3894
|
+
["result", ["ESRI::Soap::MapServer::RecordSet", XSD::QName.new(nil, "Result")]]
|
3895
|
+
]
|
3896
|
+
)
|
3897
|
+
|
3898
|
+
LiteralRegistry.register(
|
3899
|
+
:class => ESRI::Soap::MapServer::QueryFeatureCount2,
|
3900
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureCount2"),
|
3901
|
+
:schema_element => [
|
3902
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
3903
|
+
["layerDescription", ["ESRI::Soap::MapServer::LayerDescription", XSD::QName.new(nil, "LayerDescription")]],
|
3904
|
+
["queryFilter", ["ESRI::Soap::MapServer::QueryFilter", XSD::QName.new(nil, "QueryFilter")]]
|
3905
|
+
]
|
3906
|
+
)
|
3907
|
+
|
3908
|
+
LiteralRegistry.register(
|
3909
|
+
:class => ESRI::Soap::MapServer::QueryFeatureCount2Response,
|
3910
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureCount2Response"),
|
3911
|
+
:schema_element => [
|
3912
|
+
["result", ["SOAP::SOAPInt", XSD::QName.new(nil, "Result")]]
|
3913
|
+
]
|
3914
|
+
)
|
3915
|
+
|
3916
|
+
LiteralRegistry.register(
|
3917
|
+
:class => ESRI::Soap::MapServer::QueryFeatureIDs2,
|
3918
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureIDs2"),
|
3919
|
+
:schema_element => [
|
3920
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
3921
|
+
["layerDescription", ["ESRI::Soap::MapServer::LayerDescription", XSD::QName.new(nil, "LayerDescription")]],
|
3922
|
+
["queryFilter", ["ESRI::Soap::MapServer::QueryFilter", XSD::QName.new(nil, "QueryFilter")]]
|
3923
|
+
]
|
3924
|
+
)
|
3925
|
+
|
3926
|
+
LiteralRegistry.register(
|
3927
|
+
:class => ESRI::Soap::MapServer::QueryFeatureIDs2Response,
|
3928
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureIDs2Response"),
|
3929
|
+
:schema_element => [
|
3930
|
+
["result", ["ESRI::Soap::MapServer::FIDSet", XSD::QName.new(nil, "Result")]]
|
3931
|
+
]
|
3932
|
+
)
|
3933
|
+
|
3934
|
+
LiteralRegistry.register(
|
3935
|
+
:class => ESRI::Soap::MapServer::QueryFeatureData2,
|
3936
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureData2"),
|
3937
|
+
:schema_element => [
|
3938
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
3939
|
+
["layerDescription", ["ESRI::Soap::MapServer::LayerDescription", XSD::QName.new(nil, "LayerDescription")]],
|
3940
|
+
["queryFilter", ["ESRI::Soap::MapServer::QueryFilter", XSD::QName.new(nil, "QueryFilter")]],
|
3941
|
+
["queryResultOptions", ["ESRI::Soap::MapServer::QueryResultOptions", XSD::QName.new(nil, "QueryResultOptions")]]
|
3942
|
+
]
|
3943
|
+
)
|
3944
|
+
|
3945
|
+
LiteralRegistry.register(
|
3946
|
+
:class => ESRI::Soap::MapServer::QueryFeatureData2Response,
|
3947
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryFeatureData2Response"),
|
3948
|
+
:schema_element => [
|
3949
|
+
["result", ["ESRI::Soap::MapServer::QueryResult", XSD::QName.new(nil, "Result")]]
|
3950
|
+
]
|
3951
|
+
)
|
3952
|
+
|
3953
|
+
LiteralRegistry.register(
|
3954
|
+
:class => ESRI::Soap::MapServer::QueryHyperlinks,
|
3955
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryHyperlinks"),
|
3956
|
+
:schema_element => [
|
3957
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
3958
|
+
["mapImageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "MapImageDisplay")]],
|
3959
|
+
["layerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "LayerIDs")]]
|
3960
|
+
]
|
3961
|
+
)
|
3962
|
+
|
3963
|
+
LiteralRegistry.register(
|
3964
|
+
:class => ESRI::Soap::MapServer::QueryHyperlinksResponse,
|
3965
|
+
:schema_name => XSD::QName.new(NsC_93, "QueryHyperlinksResponse"),
|
3966
|
+
:schema_element => [
|
3967
|
+
["result", ["ESRI::Soap::MapServer::ArrayOfMapServerHyperlink", XSD::QName.new(nil, "Result")]]
|
3968
|
+
]
|
3969
|
+
)
|
3970
|
+
|
3971
|
+
LiteralRegistry.register(
|
3972
|
+
:class => ESRI::Soap::MapServer::ComputeScale,
|
3973
|
+
:schema_name => XSD::QName.new(NsC_93, "ComputeScale"),
|
3974
|
+
:schema_element => [
|
3975
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
3976
|
+
["mapImageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "MapImageDisplay")]]
|
3977
|
+
]
|
3978
|
+
)
|
3979
|
+
|
3980
|
+
LiteralRegistry.register(
|
3981
|
+
:class => ESRI::Soap::MapServer::ComputeScaleResponse,
|
3982
|
+
:schema_name => XSD::QName.new(NsC_93, "ComputeScaleResponse"),
|
3983
|
+
:schema_element => [
|
3984
|
+
["result", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Result")]]
|
3985
|
+
]
|
3986
|
+
)
|
3987
|
+
|
3988
|
+
LiteralRegistry.register(
|
3989
|
+
:class => ESRI::Soap::MapServer::ComputeDistance,
|
3990
|
+
:schema_name => XSD::QName.new(NsC_93, "ComputeDistance"),
|
3991
|
+
:schema_element => [
|
3992
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
3993
|
+
["fromPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "FromPoint")]],
|
3994
|
+
["toPoint", ["ESRI::Soap::MapServer::Point", XSD::QName.new(nil, "ToPoint")]],
|
3995
|
+
["units", ["ESRI::Soap::MapServer::EsriUnits", XSD::QName.new(nil, "Units")]]
|
3996
|
+
]
|
3997
|
+
)
|
3998
|
+
|
3999
|
+
LiteralRegistry.register(
|
4000
|
+
:class => ESRI::Soap::MapServer::ComputeDistanceResponse,
|
4001
|
+
:schema_name => XSD::QName.new(NsC_93, "ComputeDistanceResponse"),
|
4002
|
+
:schema_element => [
|
4003
|
+
["result", ["SOAP::SOAPDouble", XSD::QName.new(nil, "Result")]]
|
4004
|
+
]
|
4005
|
+
)
|
4006
|
+
|
4007
|
+
LiteralRegistry.register(
|
4008
|
+
:class => ESRI::Soap::MapServer::ToMapPoints,
|
4009
|
+
:schema_name => XSD::QName.new(NsC_93, "ToMapPoints"),
|
4010
|
+
:schema_element => [
|
4011
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
4012
|
+
["mapImageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "MapImageDisplay")]],
|
4013
|
+
["screenXValues", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "ScreenXValues")]],
|
4014
|
+
["screenYValues", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "ScreenYValues")]]
|
4015
|
+
]
|
4016
|
+
)
|
4017
|
+
|
4018
|
+
LiteralRegistry.register(
|
4019
|
+
:class => ESRI::Soap::MapServer::ToMapPointsResponse,
|
4020
|
+
:schema_name => XSD::QName.new(NsC_93, "ToMapPointsResponse"),
|
4021
|
+
:schema_element => [
|
4022
|
+
["result", ["ESRI::Soap::MapServer::Multipoint", XSD::QName.new(nil, "Result")]]
|
4023
|
+
]
|
4024
|
+
)
|
4025
|
+
|
4026
|
+
LiteralRegistry.register(
|
4027
|
+
:class => ESRI::Soap::MapServer::FromMapPoints,
|
4028
|
+
:schema_name => XSD::QName.new(NsC_93, "FromMapPoints"),
|
4029
|
+
:schema_element => [
|
4030
|
+
["mapDescription", ["ESRI::Soap::MapServer::MapDescription", XSD::QName.new(nil, "MapDescription")]],
|
4031
|
+
["mapImageDisplay", ["ESRI::Soap::MapServer::ImageDisplay", XSD::QName.new(nil, "MapImageDisplay")]],
|
4032
|
+
["mapPoints", ["ESRI::Soap::MapServer::Multipoint", XSD::QName.new(nil, "MapPoints")]]
|
4033
|
+
]
|
4034
|
+
)
|
4035
|
+
|
4036
|
+
LiteralRegistry.register(
|
4037
|
+
:class => ESRI::Soap::MapServer::FromMapPointsResponse,
|
4038
|
+
:schema_name => XSD::QName.new(NsC_93, "FromMapPointsResponse"),
|
4039
|
+
:schema_element => [
|
4040
|
+
["screenXValues", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "ScreenXValues")]],
|
4041
|
+
["screenYValues", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "ScreenYValues")]]
|
4042
|
+
]
|
4043
|
+
)
|
4044
|
+
|
4045
|
+
LiteralRegistry.register(
|
4046
|
+
:class => ESRI::Soap::MapServer::GetLegendInfo,
|
4047
|
+
:schema_name => XSD::QName.new(NsC_93, "GetLegendInfo"),
|
4048
|
+
:schema_element => [
|
4049
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
4050
|
+
["layerIDs", ["ESRI::Soap::MapServer::ArrayOfInt", XSD::QName.new(nil, "LayerIDs")]],
|
4051
|
+
["legendPatch", ["ESRI::Soap::MapServer::MapServerLegendPatch", XSD::QName.new(nil, "LegendPatch")]],
|
4052
|
+
["imageType", ["ESRI::Soap::MapServer::ImageType", XSD::QName.new(nil, "ImageType")]]
|
4053
|
+
]
|
4054
|
+
)
|
4055
|
+
|
4056
|
+
LiteralRegistry.register(
|
4057
|
+
:class => ESRI::Soap::MapServer::GetLegendInfoResponse,
|
4058
|
+
:schema_name => XSD::QName.new(NsC_93, "GetLegendInfoResponse"),
|
4059
|
+
:schema_element => [
|
4060
|
+
["result", ["ESRI::Soap::MapServer::ArrayOfMapServerLegendInfo", XSD::QName.new(nil, "Result")]]
|
4061
|
+
]
|
4062
|
+
)
|
4063
|
+
|
4064
|
+
LiteralRegistry.register(
|
4065
|
+
:class => ESRI::Soap::MapServer::GetSQLSyntaxInfo,
|
4066
|
+
:schema_name => XSD::QName.new(NsC_93, "GetSQLSyntaxInfo"),
|
4067
|
+
:schema_element => [
|
4068
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
4069
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]]
|
4070
|
+
]
|
4071
|
+
)
|
4072
|
+
|
4073
|
+
LiteralRegistry.register(
|
4074
|
+
:class => ESRI::Soap::MapServer::GetSQLSyntaxInfoResponse,
|
4075
|
+
:schema_name => XSD::QName.new(NsC_93, "GetSQLSyntaxInfoResponse"),
|
4076
|
+
:schema_element => [
|
4077
|
+
["result", ["ESRI::Soap::MapServer::SQLSyntaxInfo", XSD::QName.new(nil, "Result")]]
|
4078
|
+
]
|
4079
|
+
)
|
4080
|
+
|
4081
|
+
LiteralRegistry.register(
|
4082
|
+
:class => ESRI::Soap::MapServer::GetSupportedImageReturnTypes,
|
4083
|
+
:schema_name => XSD::QName.new(NsC_93, "GetSupportedImageReturnTypes"),
|
4084
|
+
:schema_element => []
|
4085
|
+
)
|
4086
|
+
|
4087
|
+
LiteralRegistry.register(
|
4088
|
+
:class => ESRI::Soap::MapServer::GetSupportedImageReturnTypesResponse,
|
4089
|
+
:schema_name => XSD::QName.new(NsC_93, "GetSupportedImageReturnTypesResponse"),
|
4090
|
+
:schema_element => [
|
4091
|
+
["result", ["ESRI::Soap::MapServer::EsriImageReturnType", XSD::QName.new(nil, "Result")]]
|
4092
|
+
]
|
4093
|
+
)
|
4094
|
+
|
4095
|
+
LiteralRegistry.register(
|
4096
|
+
:class => ESRI::Soap::MapServer::IsFixedScaleMap,
|
4097
|
+
:schema_name => XSD::QName.new(NsC_93, "IsFixedScaleMap"),
|
4098
|
+
:schema_element => [
|
4099
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
4100
|
+
]
|
4101
|
+
)
|
4102
|
+
|
4103
|
+
LiteralRegistry.register(
|
4104
|
+
:class => ESRI::Soap::MapServer::IsFixedScaleMapResponse,
|
4105
|
+
:schema_name => XSD::QName.new(NsC_93, "IsFixedScaleMapResponse"),
|
4106
|
+
:schema_element => [
|
4107
|
+
["result", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Result")]]
|
4108
|
+
]
|
4109
|
+
)
|
4110
|
+
|
4111
|
+
LiteralRegistry.register(
|
4112
|
+
:class => ESRI::Soap::MapServer::HasSingleFusedMapCache,
|
4113
|
+
:schema_name => XSD::QName.new(NsC_93, "HasSingleFusedMapCache"),
|
4114
|
+
:schema_element => [
|
4115
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
4116
|
+
]
|
4117
|
+
)
|
4118
|
+
|
4119
|
+
LiteralRegistry.register(
|
4120
|
+
:class => ESRI::Soap::MapServer::HasSingleFusedMapCacheResponse,
|
4121
|
+
:schema_name => XSD::QName.new(NsC_93, "HasSingleFusedMapCacheResponse"),
|
4122
|
+
:schema_element => [
|
4123
|
+
["result", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Result")]]
|
4124
|
+
]
|
4125
|
+
)
|
4126
|
+
|
4127
|
+
LiteralRegistry.register(
|
4128
|
+
:class => ESRI::Soap::MapServer::GetTileCacheInfo,
|
4129
|
+
:schema_name => XSD::QName.new(NsC_93, "GetTileCacheInfo"),
|
4130
|
+
:schema_element => [
|
4131
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
4132
|
+
]
|
4133
|
+
)
|
4134
|
+
|
4135
|
+
LiteralRegistry.register(
|
4136
|
+
:class => ESRI::Soap::MapServer::GetTileCacheInfoResponse,
|
4137
|
+
:schema_name => XSD::QName.new(NsC_93, "GetTileCacheInfoResponse"),
|
4138
|
+
:schema_element => [
|
4139
|
+
["result", ["ESRI::Soap::MapServer::TileCacheInfo", XSD::QName.new(nil, "Result")]]
|
4140
|
+
]
|
4141
|
+
)
|
4142
|
+
|
4143
|
+
LiteralRegistry.register(
|
4144
|
+
:class => ESRI::Soap::MapServer::GetMapTile,
|
4145
|
+
:schema_name => XSD::QName.new(NsC_93, "GetMapTile"),
|
4146
|
+
:schema_element => [
|
4147
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
4148
|
+
["level", ["SOAP::SOAPInt", XSD::QName.new(nil, "Level")]],
|
4149
|
+
["row", ["SOAP::SOAPInt", XSD::QName.new(nil, "Row")]],
|
4150
|
+
["column", ["SOAP::SOAPInt", XSD::QName.new(nil, "Column")]],
|
4151
|
+
["format", ["SOAP::SOAPString", XSD::QName.new(nil, "Format")], [0, 1]]
|
4152
|
+
]
|
4153
|
+
)
|
4154
|
+
|
4155
|
+
LiteralRegistry.register(
|
4156
|
+
:class => ESRI::Soap::MapServer::GetMapTileResponse,
|
4157
|
+
:schema_name => XSD::QName.new(NsC_93, "GetMapTileResponse"),
|
4158
|
+
:schema_element => [
|
4159
|
+
["result", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Result")]]
|
4160
|
+
]
|
4161
|
+
)
|
4162
|
+
|
4163
|
+
LiteralRegistry.register(
|
4164
|
+
:class => ESRI::Soap::MapServer::HasLayerCache,
|
4165
|
+
:schema_name => XSD::QName.new(NsC_93, "HasLayerCache"),
|
4166
|
+
:schema_element => [
|
4167
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
4168
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]]
|
4169
|
+
]
|
4170
|
+
)
|
4171
|
+
|
4172
|
+
LiteralRegistry.register(
|
4173
|
+
:class => ESRI::Soap::MapServer::HasLayerCacheResponse,
|
4174
|
+
:schema_name => XSD::QName.new(NsC_93, "HasLayerCacheResponse"),
|
4175
|
+
:schema_element => [
|
4176
|
+
["result", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "Result")]]
|
4177
|
+
]
|
4178
|
+
)
|
4179
|
+
|
4180
|
+
LiteralRegistry.register(
|
4181
|
+
:class => ESRI::Soap::MapServer::GetLayerTile,
|
4182
|
+
:schema_name => XSD::QName.new(NsC_93, "GetLayerTile"),
|
4183
|
+
:schema_element => [
|
4184
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
4185
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]],
|
4186
|
+
["level", ["SOAP::SOAPInt", XSD::QName.new(nil, "Level")]],
|
4187
|
+
["row", ["SOAP::SOAPInt", XSD::QName.new(nil, "Row")]],
|
4188
|
+
["column", ["SOAP::SOAPInt", XSD::QName.new(nil, "Column")]],
|
4189
|
+
["format", ["SOAP::SOAPString", XSD::QName.new(nil, "Format")], [0, 1]]
|
4190
|
+
]
|
4191
|
+
)
|
4192
|
+
|
4193
|
+
LiteralRegistry.register(
|
4194
|
+
:class => ESRI::Soap::MapServer::GetLayerTileResponse,
|
4195
|
+
:schema_name => XSD::QName.new(NsC_93, "GetLayerTileResponse"),
|
4196
|
+
:schema_element => [
|
4197
|
+
["result", ["SOAP::SOAPBase64", XSD::QName.new(nil, "Result")]]
|
4198
|
+
]
|
4199
|
+
)
|
4200
|
+
|
4201
|
+
LiteralRegistry.register(
|
4202
|
+
:class => ESRI::Soap::MapServer::GetVirtualCacheDirectory,
|
4203
|
+
:schema_name => XSD::QName.new(NsC_93, "GetVirtualCacheDirectory"),
|
4204
|
+
:schema_element => [
|
4205
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
4206
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]]
|
4207
|
+
]
|
4208
|
+
)
|
4209
|
+
|
4210
|
+
LiteralRegistry.register(
|
4211
|
+
:class => ESRI::Soap::MapServer::GetVirtualCacheDirectoryResponse,
|
4212
|
+
:schema_name => XSD::QName.new(NsC_93, "GetVirtualCacheDirectoryResponse"),
|
4213
|
+
:schema_element => [
|
4214
|
+
["result", ["SOAP::SOAPString", XSD::QName.new(nil, "Result")]]
|
4215
|
+
]
|
4216
|
+
)
|
4217
|
+
|
4218
|
+
LiteralRegistry.register(
|
4219
|
+
:class => ESRI::Soap::MapServer::GetCacheName,
|
4220
|
+
:schema_name => XSD::QName.new(NsC_93, "GetCacheName"),
|
4221
|
+
:schema_element => [
|
4222
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]],
|
4223
|
+
["layerID", ["SOAP::SOAPInt", XSD::QName.new(nil, "LayerID")]]
|
4224
|
+
]
|
4225
|
+
)
|
4226
|
+
|
4227
|
+
LiteralRegistry.register(
|
4228
|
+
:class => ESRI::Soap::MapServer::GetCacheNameResponse,
|
4229
|
+
:schema_name => XSD::QName.new(NsC_93, "GetCacheNameResponse"),
|
4230
|
+
:schema_element => [
|
4231
|
+
["result", ["SOAP::SOAPString", XSD::QName.new(nil, "Result")]]
|
4232
|
+
]
|
4233
|
+
)
|
4234
|
+
|
4235
|
+
LiteralRegistry.register(
|
4236
|
+
:class => ESRI::Soap::MapServer::GetTileImageInfo,
|
4237
|
+
:schema_name => XSD::QName.new(NsC_93, "GetTileImageInfo"),
|
4238
|
+
:schema_element => [
|
4239
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
4240
|
+
]
|
4241
|
+
)
|
4242
|
+
|
4243
|
+
LiteralRegistry.register(
|
4244
|
+
:class => ESRI::Soap::MapServer::GetTileImageInfoResponse,
|
4245
|
+
:schema_name => XSD::QName.new(NsC_93, "GetTileImageInfoResponse"),
|
4246
|
+
:schema_element => [
|
4247
|
+
["result", ["ESRI::Soap::MapServer::TileImageInfo", XSD::QName.new(nil, "Result")]]
|
4248
|
+
]
|
4249
|
+
)
|
4250
|
+
|
4251
|
+
LiteralRegistry.register(
|
4252
|
+
:class => ESRI::Soap::MapServer::GetCacheControlInfo,
|
4253
|
+
:schema_name => XSD::QName.new(NsC_93, "GetCacheControlInfo"),
|
4254
|
+
:schema_element => [
|
4255
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
4256
|
+
]
|
4257
|
+
)
|
4258
|
+
|
4259
|
+
LiteralRegistry.register(
|
4260
|
+
:class => ESRI::Soap::MapServer::GetCacheControlInfoResponse,
|
4261
|
+
:schema_name => XSD::QName.new(NsC_93, "GetCacheControlInfoResponse"),
|
4262
|
+
:schema_element => [
|
4263
|
+
["result", ["ESRI::Soap::MapServer::CacheControlInfo", XSD::QName.new(nil, "Result")]]
|
4264
|
+
]
|
4265
|
+
)
|
4266
|
+
|
4267
|
+
LiteralRegistry.register(
|
4268
|
+
:class => ESRI::Soap::MapServer::GetServiceConfigurationInfo,
|
4269
|
+
:schema_name => XSD::QName.new(NsC_93, "GetServiceConfigurationInfo"),
|
4270
|
+
:schema_element => []
|
4271
|
+
)
|
4272
|
+
|
4273
|
+
LiteralRegistry.register(
|
4274
|
+
:class => ESRI::Soap::MapServer::GetServiceConfigurationInfoResponse,
|
4275
|
+
:schema_name => XSD::QName.new(NsC_93, "GetServiceConfigurationInfoResponse"),
|
4276
|
+
:schema_element => [
|
4277
|
+
["result", ["ESRI::Soap::MapServer::PropertySet", XSD::QName.new(nil, "Result")]]
|
4278
|
+
]
|
4279
|
+
)
|
4280
|
+
|
4281
|
+
LiteralRegistry.register(
|
4282
|
+
:class => ESRI::Soap::MapServer::GetCacheDescriptionInfo,
|
4283
|
+
:schema_name => XSD::QName.new(NsC_93, "GetCacheDescriptionInfo"),
|
4284
|
+
:schema_element => [
|
4285
|
+
["mapName", ["SOAP::SOAPString", XSD::QName.new(nil, "MapName")]]
|
4286
|
+
]
|
4287
|
+
)
|
4288
|
+
|
4289
|
+
LiteralRegistry.register(
|
4290
|
+
:class => ESRI::Soap::MapServer::GetCacheDescriptionInfoResponse,
|
4291
|
+
:schema_name => XSD::QName.new(NsC_93, "GetCacheDescriptionInfoResponse"),
|
4292
|
+
:schema_element => [
|
4293
|
+
["result", ["ESRI::Soap::MapServer::CacheDescriptionInfo", XSD::QName.new(nil, "Result")]]
|
4294
|
+
]
|
4295
|
+
)
|
4296
|
+
end
|
4297
|
+
|
4298
|
+
end
|
4299
|
+
end
|
4300
|
+
end
|