File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/main/java/com/esri/samples/map/read_geopackage Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,12 @@ remove them from the map.</p>
1717<ol >
1818 <li>Create a <code>GeoPackage</code> with the path to the local geoPackage file.</li>
1919 <li>Load the <code>GeoPackage</code> with <code>GeoPackage.loadAsync</code>.</li>
20+ <li>Create raster layers for each of these with <code>new RasterLayer(geoPackageRaster)</code>.</li>
21+ <li>Add each layer to the map as an operational layer with <code>map.getOperationalLayers().add(layer)</code>.</li>
2022 <li>When it's done loading, get the <code>GeoPackageFeatureTable</code>s inside with <code>geoPackage
2123 .getGeoPackageFeatureTables()</code>.</li>
2224 <li>For each feature table, create a feature layer with <code>new FeatureLayer(featureTable)</code>.</li>
23- <li>You can also get the <code>GeoPackageRaster</code>s inside using <code>GeoPackage.getGeoPackageRasters()</code>
24- .</li>
25- <li>Create raster layers for each of these with <code>new RasterLayer(geoPackageRaster)</code>.</li>
26- <li>Add each layer to the map as an operational layer with <code>map.getOperationalLayers().add(layer)</code>.</li>
25+ <li>You can also get the <code>GeoPackageRaster</code>s inside using <code>GeoPackage.getGeoPackageRasters()</code>.</li>
2726</ol >
2827
2928<h2 >Features</h2 >
You can’t perform that action at this time.
0 commit comments