Display features from a local GeoPackage.
A GeoPackage is an OGC standard, making it useful when your project requires an open source data format or when other, non-ArcGIS systems may be creating the data. Accessing data from a local GeoPackage is useful when working in an environment that has an inconsistent internet connection or that does not have an internet connection at all. For example, a department of transportation field worker might source map data from a GeoPackage when conducting signage inspections in rural areas with poor network coverage.
Pan and zoom around the map. View the data loaded from the geopackage.
- Create a
GeoPackage
passing the URI string into the constructor. - Load the
GeoPackage
withGeoPackage.loadAsync
- When it's done loading, get the
GeoPackageFeatureTable
objects from the geopackage withgeoPackage.getGeoPackageFeatureTables()
- Create a
FeatureLayer(featureTable)
for each feature table and add it to the map as an operational layer. Add each to the map as an operational layer withmap.OperationalLayers.Add(featureLayer)
.
- Map
- FeatureLayer
- GeoPackage
- GeoPackageFeatureTable
This sample downloads the following items from ArcGIS Online automatically:
- Aurora, Colorado GeoPackage - GeoPackage with datasets that cover Aurora Colorado: Public art (points), Bike trails (lines), and Subdivisions (polygons), Airport noise (raster), Buildings (raster).
feature table, geopackage, gpkg, OGC, package, standards