aspose-gis-net 25.7.0__py3-none-win_amd64.whl → 25.9.0__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aspose-gis-net might be problematic. Click here for more details.
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/Microsoft.Data.Sqlite.dll +0 -0
- aspose/assemblies/gis/SQLitePCLRaw.batteries_v2.dll +0 -0
- aspose/assemblies/gis/SQLitePCLRaw.core.dll +0 -0
- aspose/assemblies/gis/SQLitePCLRaw.provider.e_sqlite3.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/assemblies/gis/e_sqlite3.dll +0 -0
- aspose/gis/__init__.pyi +606 -76
- aspose/gis/common/__init__.pyi +101 -9
- aspose/gis/common/formats/__init__.pyi +2 -0
- aspose/gis/common/formats/dbase/__init__.pyi +21 -0
- aspose/gis/common/formats/gdbtable/__init__.pyi +38 -1
- aspose/gis/common/formats/mapinfo/__init__.pyi +50 -7
- aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +42 -1
- aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +49 -5
- aspose/gis/common/formats/mapinfo/styling/__init__.pyi +34 -0
- aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +2 -0
- aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +71 -11
- aspose/gis/common/formats/wkb/__init__.pyi +2 -0
- aspose/gis/common/formats/wkt/__init__.pyi +28 -0
- aspose/gis/common/formats/xml/__init__.pyi +14 -0
- aspose/gis/common/io/__init__.pyi +33 -8
- aspose/gis/epsg/__init__.pyi +71 -0
- aspose/gis/formats/__init__.pyi +2 -0
- aspose/gis/formats/bmpw/__init__.pyi +2 -0
- aspose/gis/formats/csv/__init__.pyi +9 -0
- aspose/gis/formats/database/__init__.pyi +5 -0
- aspose/gis/formats/database/dataediting/__init__.pyi +2 -0
- aspose/gis/formats/database/fromdefinition/__init__.pyi +2 -0
- aspose/gis/formats/esriascii/__init__.pyi +6 -0
- aspose/gis/formats/esrijson/__init__.pyi +6 -0
- aspose/gis/formats/filegdb/__init__.pyi +9 -0
- aspose/gis/formats/gdal/__init__.pyi +8 -0
- aspose/gis/formats/geojson/__init__.pyi +6 -0
- aspose/gis/formats/geojsonseq/__init__.pyi +6 -0
- aspose/gis/formats/geopackage/__init__.pyi +746 -0
- aspose/gis/formats/geotiff/__init__.pyi +6 -0
- aspose/gis/formats/gml/__init__.pyi +6 -0
- aspose/gis/formats/gpx/__init__.pyi +6 -0
- aspose/gis/formats/infile/__init__.pyi +6 -0
- aspose/gis/formats/inmemory/__init__.pyi +2 -0
- aspose/gis/formats/jpegw/__init__.pyi +2 -0
- aspose/gis/formats/kml/__init__.pyi +526 -0
- aspose/gis/formats/kml/specificfields/__init__.pyi +1131 -0
- aspose/gis/formats/kml/styles/__init__.pyi +41 -2
- aspose/gis/formats/mapinfointerchange/__init__.pyi +6 -0
- aspose/gis/formats/mapinfotab/__init__.pyi +6 -0
- aspose/gis/formats/osmxml/__init__.pyi +6 -0
- aspose/gis/formats/pngw/__init__.pyi +2 -0
- aspose/gis/formats/postgis/__init__.pyi +6 -0
- aspose/gis/formats/shapefile/__init__.pyi +6 -0
- aspose/gis/formats/sqlserver/__init__.pyi +6 -0
- aspose/gis/formats/tiffw/__init__.pyi +2 -0
- aspose/gis/formats/topojson/__init__.pyi +15 -0
- aspose/gis/formats/worldfile/__init__.pyi +2 -0
- aspose/gis/formats/xyztile/__init__.pyi +17 -0
- aspose/gis/geometries/__init__.pyi +853 -324
- aspose/gis/geotools/__init__.pyi +46 -0
- aspose/gis/geotools/extensions/__init__.pyi +2 -0
- aspose/gis/geotools/layersmap/__init__.pyi +17 -0
- aspose/gis/geotools/mapbuilder/__init__.pyi +9 -0
- aspose/gis/geotools/wayanalyzer/__init__.pyi +14 -0
- aspose/gis/imagemetadata/__init__.pyi +5 -3
- aspose/gis/indexing/__init__.pyi +10 -0
- aspose/gis/indexing/bplustree/__init__.pyi +5 -0
- aspose/gis/indexing/qixtree/__init__.pyi +5 -0
- aspose/gis/indexing/rtree/__init__.pyi +5 -0
- aspose/gis/labeling/__init__.pyi +34 -0
- aspose/gis/labeling/line/__init__.pyi +26 -0
- aspose/gis/painting/__init__.pyi +87 -8
- aspose/gis/projections/__init__.pyi +16 -0
- aspose/gis/raster/__init__.pyi +36 -0
- aspose/gis/raster/web/__init__.pyi +8 -0
- aspose/gis/relationship/__init__.pyi +2 -0
- aspose/gis/relationship/joins/__init__.pyi +10 -0
- aspose/gis/rendering/__init__.pyi +126 -10
- aspose/gis/rendering/colorizers/__init__.pyi +39 -10
- aspose/gis/rendering/formats/__init__.pyi +2 -0
- aspose/gis/rendering/formats/bmp/__init__.pyi +2 -0
- aspose/gis/rendering/formats/jpeg/__init__.pyi +2 -0
- aspose/gis/rendering/formats/png/__init__.pyi +2 -0
- aspose/gis/rendering/formats/svg/__init__.pyi +2 -0
- aspose/gis/rendering/labelings/__init__.pyi +73 -10
- aspose/gis/rendering/sld/__init__.pyi +5 -0
- aspose/gis/rendering/symbolizers/__init__.pyi +193 -28
- aspose/gis/spatialreferencing/__init__.pyi +504 -154
- aspose/gis/topology/__init__.pyi +39 -0
- aspose/gis/topology/algorithms/__init__.pyi +2 -0
- aspose/gis/topology/buffer/__init__.pyi +8 -0
- aspose/gis/topology/graph/__init__.pyi +7 -0
- aspose/gis.cp310-win_amd64.pyd +0 -0
- aspose/gis.cp311-win_amd64.pyd +0 -0
- aspose/gis.cp312-win_amd64.pyd +0 -0
- aspose/gis.cp313-win_amd64.pyd +0 -0
- aspose/gis.cp35-win_amd64.pyd +0 -0
- aspose/gis.cp36-win_amd64.pyd +0 -0
- aspose/gis.cp37-win_amd64.pyd +0 -0
- aspose/gis.cp38-win_amd64.pyd +0 -0
- aspose/gis.cp39-win_amd64.pyd +0 -0
- aspose/pydrawing/__init__.pyi +29 -7
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/METADATA +6 -3
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/RECORD +106 -102
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/WHEEL +0 -0
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/entry_points.txt +0 -0
- {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/top_level.txt +0 -0
|
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
|
|
|
35
35
|
import aspose.gis.formats.gdal
|
|
36
36
|
import aspose.gis.formats.geojson
|
|
37
37
|
import aspose.gis.formats.geojsonseq
|
|
38
|
+
import aspose.gis.formats.geopackage
|
|
38
39
|
import aspose.gis.formats.geotiff
|
|
39
40
|
import aspose.gis.formats.gml
|
|
40
41
|
import aspose.gis.formats.gpx
|
|
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
|
|
|
42
43
|
import aspose.gis.formats.inmemory
|
|
43
44
|
import aspose.gis.formats.jpegw
|
|
44
45
|
import aspose.gis.formats.kml
|
|
46
|
+
import aspose.gis.formats.kml.specificfields
|
|
45
47
|
import aspose.gis.formats.kml.styles
|
|
46
48
|
import aspose.gis.formats.mapinfointerchange
|
|
47
49
|
import aspose.gis.formats.mapinfotab
|
|
@@ -92,8 +94,14 @@ import aspose.gis.topology.graph
|
|
|
92
94
|
class GeometryGenerator(VectorSymbolizer):
|
|
93
95
|
'''Decorate a symbolizer to modify feature\'s geometry before rendering.'''
|
|
94
96
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
+
def __init__(self) -> None:
|
|
98
|
+
raise NotImplementedError()
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
102
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
103
|
+
raise NotImplementedError()
|
|
104
|
+
|
|
97
105
|
@property
|
|
98
106
|
def symbolizer(self) -> aspose.gis.rendering.symbolizers.VectorSymbolizer:
|
|
99
107
|
'''Specifies a symbolizer to apply to the modified geometry.
|
|
@@ -110,14 +118,33 @@ class GeometryGenerator(VectorSymbolizer):
|
|
|
110
118
|
class LayeredSymbolizer(VectorSymbolizer):
|
|
111
119
|
'''A symbolizer that renders several other symbolizers.'''
|
|
112
120
|
|
|
121
|
+
@overload
|
|
122
|
+
def __init__(self) -> None:
|
|
123
|
+
'''Creates new instance.'''
|
|
124
|
+
raise NotImplementedError()
|
|
125
|
+
|
|
126
|
+
@overload
|
|
127
|
+
def __init__(self, rendering_order : aspose.gis.rendering.symbolizers.RenderingOrder) -> None:
|
|
128
|
+
'''Creates new instance.
|
|
129
|
+
|
|
130
|
+
:param rendering_order: Determines the rendering order.
|
|
131
|
+
|
|
132
|
+
*
|
|
133
|
+
|
|
134
|
+
*'''
|
|
135
|
+
raise NotImplementedError()
|
|
136
|
+
|
|
113
137
|
def add(self, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> None:
|
|
114
138
|
'''Adds the specified symbolizer.
|
|
115
139
|
|
|
116
140
|
:param symbolizer: The symbolizer to add.'''
|
|
117
141
|
raise NotImplementedError()
|
|
118
142
|
|
|
119
|
-
|
|
120
|
-
|
|
143
|
+
@property
|
|
144
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
145
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
146
|
+
raise NotImplementedError()
|
|
147
|
+
|
|
121
148
|
@property
|
|
122
149
|
def rendering_order(self) -> aspose.gis.rendering.symbolizers.RenderingOrder:
|
|
123
150
|
'''Determines the rendering order.
|
|
@@ -140,8 +167,25 @@ class LayeredSymbolizer(VectorSymbolizer):
|
|
|
140
167
|
class MarkerCluster(VectorSymbolizer):
|
|
141
168
|
'''Marker cluster symbolizer.'''
|
|
142
169
|
|
|
143
|
-
|
|
144
|
-
|
|
170
|
+
@overload
|
|
171
|
+
def __init__(self, distance : aspose.gis.rendering.Measurement) -> None:
|
|
172
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.MarkerCluster` class.
|
|
173
|
+
|
|
174
|
+
:param distance: Specifies the distance that collects the nearest points.'''
|
|
175
|
+
raise NotImplementedError()
|
|
176
|
+
|
|
177
|
+
@overload
|
|
178
|
+
def __init__(self, other : aspose.gis.rendering.symbolizers.MarkerCluster) -> None:
|
|
179
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.MarkerCluster` class.
|
|
180
|
+
|
|
181
|
+
:param other: The other :py:class:`aspose.gis.rendering.symbolizers.MarkerCluster` to copy data from.'''
|
|
182
|
+
raise NotImplementedError()
|
|
183
|
+
|
|
184
|
+
@property
|
|
185
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
186
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
187
|
+
raise NotImplementedError()
|
|
188
|
+
|
|
145
189
|
@property
|
|
146
190
|
def marker(self) -> aspose.gis.rendering.symbolizers.VectorSymbolizer:
|
|
147
191
|
'''Specifies the marker symbolizer in the cluster center.'''
|
|
@@ -166,8 +210,23 @@ class MarkerCluster(VectorSymbolizer):
|
|
|
166
210
|
class MarkerLine(VectorSymbolizer):
|
|
167
211
|
'''Marker line symbolizer.'''
|
|
168
212
|
|
|
169
|
-
|
|
170
|
-
|
|
213
|
+
@overload
|
|
214
|
+
def __init__(self) -> None:
|
|
215
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.MarkerLine` class.'''
|
|
216
|
+
raise NotImplementedError()
|
|
217
|
+
|
|
218
|
+
@overload
|
|
219
|
+
def __init__(self, other : aspose.gis.rendering.symbolizers.MarkerLine) -> None:
|
|
220
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.MarkerLine` class.
|
|
221
|
+
|
|
222
|
+
:param other: The other :py:class:`aspose.gis.rendering.symbolizers.MarkerLine` to copy data from.'''
|
|
223
|
+
raise NotImplementedError()
|
|
224
|
+
|
|
225
|
+
@property
|
|
226
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
227
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
228
|
+
raise NotImplementedError()
|
|
229
|
+
|
|
171
230
|
@property
|
|
172
231
|
def marker(self) -> aspose.gis.rendering.symbolizers.VectorSymbolizer:
|
|
173
232
|
'''Specifies the marker symbolizer along the line.'''
|
|
@@ -226,8 +285,23 @@ class MarkerLine(VectorSymbolizer):
|
|
|
226
285
|
class MarkerPatternFill(VectorSymbolizer):
|
|
227
286
|
'''Marker pattern fill symbolizer.'''
|
|
228
287
|
|
|
229
|
-
|
|
230
|
-
|
|
288
|
+
@overload
|
|
289
|
+
def __init__(self) -> None:
|
|
290
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.MarkerPatternFill` class.'''
|
|
291
|
+
raise NotImplementedError()
|
|
292
|
+
|
|
293
|
+
@overload
|
|
294
|
+
def __init__(self, other : aspose.gis.rendering.symbolizers.MarkerPatternFill) -> None:
|
|
295
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.MarkerPatternFill` class.
|
|
296
|
+
|
|
297
|
+
:param other: The other :py:class:`aspose.gis.rendering.symbolizers.MarkerPatternFill` to copy data from.'''
|
|
298
|
+
raise NotImplementedError()
|
|
299
|
+
|
|
300
|
+
@property
|
|
301
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
302
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
303
|
+
raise NotImplementedError()
|
|
304
|
+
|
|
231
305
|
@property
|
|
232
306
|
def marker(self) -> aspose.gis.rendering.symbolizers.VectorSymbolizer:
|
|
233
307
|
'''Specifies the marker symbolizer for filling.'''
|
|
@@ -282,8 +356,15 @@ class MarkerPatternFill(VectorSymbolizer):
|
|
|
282
356
|
class MixedGeometrySymbolizer(VectorSymbolizer):
|
|
283
357
|
'''Applies correct symbolizer to a feature geometry according to its geometry type.'''
|
|
284
358
|
|
|
285
|
-
|
|
286
|
-
|
|
359
|
+
def __init__(self) -> None:
|
|
360
|
+
'''Creates new instance.'''
|
|
361
|
+
raise NotImplementedError()
|
|
362
|
+
|
|
363
|
+
@property
|
|
364
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
365
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
366
|
+
raise NotImplementedError()
|
|
367
|
+
|
|
287
368
|
@property
|
|
288
369
|
def point_symbolizer(self) -> aspose.gis.rendering.symbolizers.VectorSymbolizer:
|
|
289
370
|
'''Specifies a symbolizer to use for point geometries in the layer.'''
|
|
@@ -318,22 +399,52 @@ class MixedGeometrySymbolizer(VectorSymbolizer):
|
|
|
318
399
|
class NullVectorSymbolizer(VectorSymbolizer):
|
|
319
400
|
'''The ``NullSymbolizer`` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
320
401
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
402
|
+
@property
|
|
403
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
404
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
405
|
+
raise NotImplementedError()
|
|
406
|
+
|
|
407
|
+
@property
|
|
408
|
+
def instance(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
409
|
+
'''Gets an instance of ``NullSymbolizer``.'''
|
|
410
|
+
raise NotImplementedError()
|
|
411
|
+
|
|
325
412
|
|
|
326
413
|
class RasterImageMarker(VectorSymbolizer):
|
|
327
414
|
'''This symbolizer renders a provided raster image.'''
|
|
328
415
|
|
|
416
|
+
@overload
|
|
417
|
+
def __init__(self, image_path : str) -> None:
|
|
418
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.RasterImageMarker` class.
|
|
419
|
+
|
|
420
|
+
:param image_path: Path to the file.'''
|
|
421
|
+
raise NotImplementedError()
|
|
422
|
+
|
|
423
|
+
@overload
|
|
424
|
+
def __init__(self, image_path : aspose.gis.AbstractPath) -> None:
|
|
425
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.RasterImageMarker` class.
|
|
426
|
+
|
|
427
|
+
:param image_path: Path to the file.'''
|
|
428
|
+
raise NotImplementedError()
|
|
429
|
+
|
|
430
|
+
@overload
|
|
431
|
+
def __init__(self, other : aspose.gis.rendering.symbolizers.RasterImageMarker) -> None:
|
|
432
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.RasterImageMarker` class.
|
|
433
|
+
|
|
434
|
+
:param other: The other :py:class:`aspose.gis.rendering.symbolizers.RasterImageMarker` to copy data from.'''
|
|
435
|
+
raise NotImplementedError()
|
|
436
|
+
|
|
329
437
|
def clone(self) -> aspose.gis.rendering.symbolizers.RasterImageMarker:
|
|
330
438
|
'''Clones this instance.
|
|
331
439
|
|
|
332
440
|
:returns: A clone of this instance.'''
|
|
333
441
|
raise NotImplementedError()
|
|
334
442
|
|
|
335
|
-
|
|
336
|
-
|
|
443
|
+
@property
|
|
444
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
445
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
446
|
+
raise NotImplementedError()
|
|
447
|
+
|
|
337
448
|
@property
|
|
338
449
|
def width(self) -> aspose.gis.rendering.Measurement:
|
|
339
450
|
'''Specifies the width of the marker.'''
|
|
@@ -447,6 +558,9 @@ class Rule:
|
|
|
447
558
|
class RuleBasedSymbolizer(VectorSymbolizer):
|
|
448
559
|
'''Applies a symbolizer to feature geometries according to user-defined rules.'''
|
|
449
560
|
|
|
561
|
+
def __init__(self) -> None:
|
|
562
|
+
raise NotImplementedError()
|
|
563
|
+
|
|
450
564
|
def add_else_rule(self, symbolizer : aspose.gis.rendering.symbolizers.VectorSymbolizer) -> None:
|
|
451
565
|
'''Adds a symbolizer that will be applied to features that don\'t match any filtering rule.
|
|
452
566
|
|
|
@@ -459,20 +573,38 @@ class RuleBasedSymbolizer(VectorSymbolizer):
|
|
|
459
573
|
:param rule: Rule to add.'''
|
|
460
574
|
raise NotImplementedError()
|
|
461
575
|
|
|
462
|
-
|
|
463
|
-
|
|
576
|
+
@property
|
|
577
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
578
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
579
|
+
raise NotImplementedError()
|
|
580
|
+
|
|
464
581
|
|
|
465
582
|
class SimpleFill(VectorSymbolizer):
|
|
466
583
|
'''Simple polygon symbolizer.'''
|
|
467
584
|
|
|
585
|
+
@overload
|
|
586
|
+
def __init__(self) -> None:
|
|
587
|
+
'''Creates new instance.'''
|
|
588
|
+
raise NotImplementedError()
|
|
589
|
+
|
|
590
|
+
@overload
|
|
591
|
+
def __init__(self, other : aspose.gis.rendering.symbolizers.SimpleFill) -> None:
|
|
592
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.SimpleFill` class.
|
|
593
|
+
|
|
594
|
+
:param other: The other :py:class:`aspose.gis.rendering.symbolizers.SimpleFill` to copy data from.'''
|
|
595
|
+
raise NotImplementedError()
|
|
596
|
+
|
|
468
597
|
def clone(self) -> aspose.gis.rendering.symbolizers.SimpleFill:
|
|
469
598
|
'''Clones this instance.
|
|
470
599
|
|
|
471
600
|
:returns: A clone of this instance.'''
|
|
472
601
|
raise NotImplementedError()
|
|
473
602
|
|
|
474
|
-
|
|
475
|
-
|
|
603
|
+
@property
|
|
604
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
605
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
606
|
+
raise NotImplementedError()
|
|
607
|
+
|
|
476
608
|
@property
|
|
477
609
|
def fill_color(self) -> aspose.pydrawing.Color:
|
|
478
610
|
'''Specifies the color and transparency for filling.'''
|
|
@@ -579,14 +711,29 @@ class SimpleFill(VectorSymbolizer):
|
|
|
579
711
|
class SimpleLine(VectorSymbolizer):
|
|
580
712
|
'''Simple line symbolizer.'''
|
|
581
713
|
|
|
714
|
+
@overload
|
|
715
|
+
def __init__(self) -> None:
|
|
716
|
+
'''Creates new instance.'''
|
|
717
|
+
raise NotImplementedError()
|
|
718
|
+
|
|
719
|
+
@overload
|
|
720
|
+
def __init__(self, other : aspose.gis.rendering.symbolizers.SimpleLine) -> None:
|
|
721
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.SimpleLine` class.
|
|
722
|
+
|
|
723
|
+
:param other: The other :py:class:`aspose.gis.rendering.symbolizers.SimpleLine` to copy data from.'''
|
|
724
|
+
raise NotImplementedError()
|
|
725
|
+
|
|
582
726
|
def clone(self) -> aspose.gis.rendering.symbolizers.SimpleLine:
|
|
583
727
|
'''Clones this instance.
|
|
584
728
|
|
|
585
729
|
:returns: A clone of this instance.'''
|
|
586
730
|
raise NotImplementedError()
|
|
587
731
|
|
|
588
|
-
|
|
589
|
-
|
|
732
|
+
@property
|
|
733
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
734
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
735
|
+
raise NotImplementedError()
|
|
736
|
+
|
|
590
737
|
@property
|
|
591
738
|
def color(self) -> aspose.pydrawing.Color:
|
|
592
739
|
'''Specifies the color and transparency given to the line.'''
|
|
@@ -677,14 +824,29 @@ class SimpleLine(VectorSymbolizer):
|
|
|
677
824
|
class SimpleMarker(VectorSymbolizer):
|
|
678
825
|
'''Simple point symbolizer.'''
|
|
679
826
|
|
|
827
|
+
@overload
|
|
828
|
+
def __init__(self) -> None:
|
|
829
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.SimpleMarker` class.'''
|
|
830
|
+
raise NotImplementedError()
|
|
831
|
+
|
|
832
|
+
@overload
|
|
833
|
+
def __init__(self, other : aspose.gis.rendering.symbolizers.SimpleMarker) -> None:
|
|
834
|
+
'''Initializes a new instance of the :py:class:`aspose.gis.rendering.symbolizers.SimpleMarker` class.
|
|
835
|
+
|
|
836
|
+
:param other: The other :py:class:`aspose.gis.rendering.symbolizers.SimpleMarker` to copy data from.'''
|
|
837
|
+
raise NotImplementedError()
|
|
838
|
+
|
|
680
839
|
def clone(self) -> aspose.gis.rendering.symbolizers.SimpleMarker:
|
|
681
840
|
'''Clones this instance.
|
|
682
841
|
|
|
683
842
|
:returns: A clone of this instance.'''
|
|
684
843
|
raise NotImplementedError()
|
|
685
844
|
|
|
686
|
-
|
|
687
|
-
|
|
845
|
+
@property
|
|
846
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
847
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
848
|
+
raise NotImplementedError()
|
|
849
|
+
|
|
688
850
|
@property
|
|
689
851
|
def fill_color(self) -> aspose.pydrawing.Color:
|
|
690
852
|
'''Specifies the color and transparency for filling.'''
|
|
@@ -833,8 +995,11 @@ class SimpleMarker(VectorSymbolizer):
|
|
|
833
995
|
class VectorSymbolizer:
|
|
834
996
|
'''The abstract root class for the symbolizers that render vector features.'''
|
|
835
997
|
|
|
836
|
-
|
|
837
|
-
|
|
998
|
+
@property
|
|
999
|
+
def null(self) -> aspose.gis.rendering.symbolizers.NullVectorSymbolizer:
|
|
1000
|
+
'''The :py:class:`aspose.gis.rendering.symbolizers.NullVectorSymbolizer` draws nothing and effectively skips rendering of a geometry it is applied to.'''
|
|
1001
|
+
raise NotImplementedError()
|
|
1002
|
+
|
|
838
1003
|
|
|
839
1004
|
class HorizontalAnchor:
|
|
840
1005
|
'''Specifies side to be aligned horizontally.'''
|