Skip to content

Commit 7dd2a15

Browse files
committed
Merge branch 'main' into v.next
2 parents 9f04fe1 + d272a2d commit 7dd2a15

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.github/scripts/ci/readme_metadata_style_check/metadata_style_checker.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,8 @@ def compare_one_metadata(folder_path: str):
276276
new = single_updater.flush_to_json_string()
277277
original = json.dumps(json_data, indent=4, sort_keys=True)
278278
if new != original:
279+
print(f'New - {new}')
280+
print(f'Original = {original}')
279281
raise Exception(f'Error inconsistent metadata - {folder_path}')
280282

281283
def all_samples(path: str):

analysis/viewshed-camera/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ The sample will start with a viewshed created from the initial camera location,
2222

2323
* AnalysisOverlay
2424
* ArcGISScene
25-
* ArcGISSceneLayer
2625
* ArcGISTiledElevationSource
2726
* Camera
27+
* IntegratedMeshLayer
2828
* LocationViewshed
2929
* SceneView
3030

analysis/viewshed-camera/README.metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"visibility analysis",
1414
"AnalysisOverlay",
1515
"ArcGISScene",
16-
"ArcGISSceneLayer",
1716
"ArcGISTiledElevationSource",
1817
"Camera",
18+
"IntegratedMeshLayer",
1919
"LocationViewshed",
2020
"SceneView"
2121
],
@@ -25,9 +25,9 @@
2525
"relevant_apis": [
2626
"AnalysisOverlay",
2727
"ArcGISScene",
28-
"ArcGISSceneLayer",
2928
"ArcGISTiledElevationSource",
3029
"Camera",
30+
"IntegratedMeshLayer",
3131
"LocationViewshed",
3232
"SceneView"
3333
],

map_view/display-device-location-with-nmea-data-sources/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Display device location with NMEA data sources
22

3-
This sample demonstrates how to parse NMEA sentences and use the results to show device location on the map.
3+
Parse NMEA sentences and use the results to show device location on the map.
44

55
![Image of display device location with nmea data sources](DisplayDeviceLocationWithNMEADataSources.png)
66

map_view/display-device-location-with-nmea-data-sources/README.metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"category": "Map view",
3-
"description": "This sample demonstrates how to parse NMEA sentences and use the results to show device location on the map.",
3+
"description": "Parse NMEA sentences and use the results to show device location on the map.",
44
"ignore": false,
55
"images": [
66
"DisplayDeviceLocationWithNMEADataSources.png"

scene/show-labels-on-layer-in-3d/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Pan and zoom to explore the scene. Notice the labels showing installation dates
1414

1515
## How it works
1616

17-
1. Create an `ArcGISScene` using a URL.
18-
2. Apply the scene to a `SceneView` and load it.
17+
1. Create an `ArcGISScene` using a `PortalItem`.
18+
2. Add the scene to a `SceneView` and load it.
1919
3. After loading is complete, obtain the `FeatureLayer` from the scene's operational layers.
2020
4. Set the feature layer's `setLabelsEnabled` property to `true`.
2121
5. Create a `TextSymbol` to use for displaying the label text.
22-
6. Create a `LabelDefinition` using an `ArcadeLabelExpression`.
22+
6. Create a `LabelDefinition` using an `ArcadeLabelExpression` and the text symbol.
2323
7. Add the definition to the feature layer's `labelDefinitions` list.
2424

2525
## Relevant API
@@ -37,4 +37,4 @@ This sample shows a [New York City infrastructure](https://www.arcgis.com/home/i
3737

3838
## Tags
3939

40-
3D, arcade, attribute, buildings, label, model, scene, symbol, text, URL, visualization
40+
3D, arcade, attribute, buildings, label, model, scene, symbol, text, visualization

scene/show-labels-on-layer-in-3d/README.metadata.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"scene",
1616
"symbol",
1717
"text",
18-
"URL",
1918
"visualization",
2019
"ArcadeLabelExpression",
2120
"ArcGISScene",

0 commit comments

Comments
 (0)