GeoPackage is an open, standards-based, compact format for transferring geospatial information. More...
Import Statement: | import Esri.ArcGISRuntime 100.15 |
Since: | Esri.ArcGISRuntime 100.2 |
Inherits: |
Properties
- geoPackageFeatureTables : list<GeoPackageFeatureTable>
- geoPackageRasters : list<GeoPackageRaster>
- loadError : Error
- loadStatus : Enums.LoadStatus
- path : url
Signals
- geoPackageFeatureTablesChanged()
- geoPackageRastersChanged()
- loadErrorChanged()
- loadStatusChanged()
- pathChanged()
Methods
- void close()
Detailed Description
A GeoPackage is a platform-independent SQLite database file that contains the GeoPackage data and metadata tables.
See also Loadable.
Property Documentation
geoPackageFeatureTables : list<GeoPackageFeatureTable> |
A list of GeoPackageFeatureTable contained in this GeoPackage (read-only).
geoPackageRasters : list<GeoPackageRaster> |
A list of GeoPackageRaster contained in this GeoPackage (read-only).
loadError : Error |
Returns the load error (read-only).
Note: load errors are also reported on the error
property and emit the errorChanged
signal.
See also Loadable.
Returns the load status enumeration (read-only).
See also Loadable and Enums.LoadStatus.
A local file path to a GeoPackage on disk.
Signal Documentation
Emitted when the geoPackageFeatureTables property changes.
Note: The corresponding handler is onGeoPackageFeatureTablesChanged
.
Emitted when the geoPackageRasters property changes.
Note: The corresponding handler is onGeoPackageRastersChanged
.
Emitted when the loadStatus property of the elevation source changes.
Note: The corresponding handler is onLoadStatusChanged
.
See also Loadable.
Emitted when the path property changes.
Note: The corresponding handler is onPathChanged
.
Method Documentation
Close the GeoPackage.
This should only be called once you have finished accessing the data in the GeoPackage. For example: remove feature layers and rasters from maps and release feature tables. Attempts to access a GeoPackage after it is closed will fail, resulting in an error. After closing a GeoPackage, the underlying file it references can be deleted.