Skip to content

Commit ccec25b

Browse files
committed
change order of instructions
1 parent bc3b8e7 commit ccec25b

File tree

1 file changed

+3
-4
lines changed
  • src/main/java/com/esri/samples/map/read_geopackage

1 file changed

+3
-4
lines changed

src/main/java/com/esri/samples/map/read_geopackage/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)