Skip to content

Commit 85501bb

Browse files
Rachael-ERachael Ellen
andauthored
fix enum typo (#682)
Co-authored-by: Rachael Ellen <[email protected]>
1 parent 1b29847 commit 85501bb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
36.2 KB
Loading

display_information/dictionary-renderer-graphics-overlay/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def ant = new groovy.util.AntBuilder()
66
if (!file("./samples-data").exists()) {
77
file("./samples-data/xml").mkdirs()
88
ant.get(
9-
src: "https://arcgisruntime.maps.arcgis.com/sharing/rest/content/items/623382e0113d40698538f249e3bcb1c0/data",
9+
src: "https://arcgisruntime.maps.arcgis.com/sharing/rest/content/items/8776cfc26eed4485a03de6316826384c/data",
1010
dest: file("./data.zip")
1111
)
1212
ant.unzip(

display_information/dictionary-renderer-graphics-overlay/src/main/java/com/esri/samples/dictionary_renderer_graphics_overlay/DictionaryRendererGraphicsOverlaySample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ public void start(Stage stage) {
9090
if (dictionarySymbolStyle.getLoadStatus() == LoadStatus.LOADED) {
9191

9292
// find the first configuration setting which has the property name "model",
93-
// and set its value to "ORDERED ANCHOR POINT"
93+
// and set its value to "ORDERED ANCHOR POINTS"
9494
dictionarySymbolStyle.getConfigurations().stream()
9595
.filter(configuration -> configuration.getName().equals("model"))
9696
.findFirst()
97-
.ifPresent(modelConfiguration -> modelConfiguration.setValue("ORDERED ANCHOR POINT"));
97+
.ifPresent(modelConfiguration -> modelConfiguration.setValue("ORDERED ANCHOR POINTS"));
9898

9999
// create a new dictionary renderer from the dictionary symbol style to render graphics
100100
// with symbol dictionary attributes and set it to the graphics overlay renderer
-46.3 KB
Loading

symbology/graphics-overlay-dictionary-renderer-3D/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def ant = new groovy.util.AntBuilder()
66
if (!file("./samples-data").exists()) {
77
file("./samples-data/xml/").mkdirs()
88
ant.get(
9-
src: "https://arcgisruntime.maps.arcgis.com/sharing/rest/content/items/623382e0113d40698538f249e3bcb1c0/data",
9+
src: "https://arcgisruntime.maps.arcgis.com/sharing/rest/content/items/8776cfc26eed4485a03de6316826384c/data",
1010
dest: file("./data.zip")
1111
)
1212
ant.unzip(

symbology/graphics-overlay-dictionary-renderer-3D/src/main/java/com/esri/samples/graphics_overlay_dictionary_renderer_3D/GraphicsOverlayDictionaryRenderer3DSample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ public void start(Stage stage) {
9090
if (dictionarySymbolStyle.getLoadStatus() == LoadStatus.LOADED) {
9191

9292
// find the first configuration setting which has the property name "model",
93-
// and set its value to "ORDERED ANCHOR POINT"
93+
// and set its value to "ORDERED ANCHOR POINTS"
9494
dictionarySymbolStyle.getConfigurations().stream()
9595
.filter(configuration -> configuration.getName().equals("model"))
9696
.findFirst()
97-
.ifPresent(modelConfiguration -> modelConfiguration.setValue("ORDERED ANCHOR POINT"));
97+
.ifPresent(modelConfiguration -> modelConfiguration.setValue("ORDERED ANCHOR POINTS"));
9898

9999
// create a new dictionary renderer from the dictionary symbol style to render graphics
100100
// with symbol dictionary attributes and set it to the graphics overlay renderer

0 commit comments

Comments
 (0)