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