Skip to content

Commit 79db820

Browse files
Rachael-ERachael Ellen
andauthored
Update links to new dev site and rename to SDK -> API (#623)
* remove links to guide and rename to Java API * fixes following github checks * update links * Update README.md Co-authored-by: Rachael Ellen <[email protected]>
1 parent 5dc8628 commit 79db820

File tree

13 files changed

+26
-26
lines changed

13 files changed

+26
-26
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# ArcGIS Runtime Java SDK Samples
1+
# ArcGIS Runtime API for Java Samples
22

33
![Gradle build](https://github.com/Esri/arcgis-runtime-samples-java/workflows/Java%20CI%20with%20Gradle/badge.svg)
44

5-
This repo contains a set of sample projects demonstrating how to accomplish various mapping and GIS tasks with the ArcGIS Runtime SDK for Java.
5+
This repo contains a set of sample projects demonstrating how to accomplish various mapping and GIS tasks with the ArcGIS Runtime API for Java.
66

77
Browse the category directories to explore the samples. Each sample is an individual [Gradle](https://docs.gradle.org/current/userguide/userguide.html) project that can be run standalone. The Gradle buildscripts have tasks for running the application, building a jar, and distributing the app as a zip.
88

@@ -53,11 +53,11 @@ Some samples require offline data. A `samples-data` directory will automatically
5353

5454
## Requirements
5555

56-
See the Runtime SDK's [system requirements](https://developers.arcgis.com/java/latest/guide/system-requirements-for-quartz.htm).
56+
See the ArcGIS Runtime API's [system requirements](https://developers.arcgis.com/java/reference/system-requirements/).
5757

5858
## Resources
5959

60-
* [ArcGIS Runtime SDK for Java](https://developers.arcgis.com/java/)
60+
* [ArcGIS Runtime API for Java](https://developers.arcgis.com/java/)
6161
* [Toolkit](https://github.com/Esri/arcgis-runtime-toolkit-java)
6262
* [ArcGIS Blog](https://blogs.esri.com/esri/arcgis/)
6363
* [Esri Twitter](https://twitter.com/esri)
@@ -74,7 +74,7 @@ New to Git? Check out our [Working with Git](https://github.com/Esri/arcgis-runt
7474

7575
## Licensing
7676

77-
Copyright 2019 Esri
77+
Copyright 2021 Esri
7878

7979
Licensed under the Apache License, Version 2.0 (the "License"); you may not
8080
use this file except in compliance with the License. You may obtain a copy

editing/edit-with-branch-versioning/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Click the "Switch version" button in the top left corner to switch back and fort
1818

1919
## How it works
2020

21-
1. Create and load a `ServiceGeodatabase` with a feature service URL that has enabled [Version Management](https://developers.arcgis.com/java/latest/guide/use-branch-versioning.htm).
21+
1. Create and load a `ServiceGeodatabase` with a feature service URL that has enabled [Version Management](https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/publish-branch-versioned-data.htm).
2222
2. Get the `ServiceFeatureTable` from the service geodatabase.
2323
3. Create a `FeatureLayer` from the service feature table.
2424
4. Create `ServiceVersionParameters` with a unique name, `VersionAccess`, and description.
@@ -50,7 +50,7 @@ The name of the version must meet the following criteria:
5050
2. Must not include: Period (.), Semicolon (;), Single quotation mark ('), Double quotation mark (")
5151
3. Must not include a space for the first character
5252

53-
- Note: the version name will have the username and a period (.) prepended to it. E.g "editor01.MyNewUniqueVersionName"
53+
**Note**: the version name will have the username and a period (.) prepended to it. E.g "editor01.MyNewUniqueVersionName"
5454

5555
Branch versioning access permission:
5656

feature_layers/feature-layer-geodatabase/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Display features from a local geodatabase.
66

77
## Use case
88

9-
Accessing data from a local geodatabase 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 local geodatabase when conducting signage inspections in rural areas with poor network coverage.
9+
Accessing data from a local geodatabase 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 local geodatabase when conducting signage inspections in rural areas with poor network coverage.
1010

1111
## How to use the sample
1212

@@ -34,9 +34,9 @@ The sample shows trailheads in the greater Los Angeles area displayed on top of
3434

3535
One of the ArcGIS Runtime data set types that can be accessed via the local storage of the device (i.e. hard drive, flash drive, micro SD card, USB stick, etc.) is a mobile geodatabase. A mobile geodatabase can be provisioned for use in an ArcGIS Runtime application by ArcMap. The following provide some helpful tips on how to create a mobile geodatabase file:
3636

37-
In ArcMap, choose File > Share As > ArcGIS Runtime Content from the menu items to create the .geodatabase file (see the document: https://desktop.arcgis.com/en/arcmap/latest/map/working-with-arcmap/creating-arcgis-runtime-content.htm).
37+
In ArcMap, choose File > Share As > ArcGIS Runtime Content from the menu items to create the .geodatabase file (see the [Creating ArcGIS Runtime content](https://desktop.arcgis.com/en/arcmap/latest/map/working-with-arcmap/creating-arcgis-runtime-content.htm) document.
3838

39-
Note: You could also use the 'Services Pattern' and access the Geodatabase class via a Feature Service served up via ArcGIS Online or ArcGIS Enterprise. Instead of using the Geodatabase class to access the .geodatabase file on disk, you would use GeodatabaseSyncTask point to a Uri instead. For more information review the document: https://developers.arcgis.com/java/latest/guide/work-with-offline-layers.htm.
39+
Note: You could also use the 'Services Pattern' and access the `Geodatabase` class via a Feature Service served up via ArcGIS Online or ArcGIS Enterprise. Instead of using the `Geodatabase` class to access the .geodatabase file on disk, you would use `GeodatabaseSyncTask` to point to a Uri instead.
4040

4141
## Tags
4242

feature_layers/service-feature-table-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Display a feature layer from a service using the **on interaction cache** featur
66

77
## Use case
88

9-
`ServiceFeatureTable` supports three request modes, which define how features are requested from the service and stored in the local table. The feature request modes have different performance characteristics. Use **On interaction cache** in scenarios with large amounts of infrequently edited data. See [Table performance concepts](https://developers.arcgis.com/java/latest/guide/layers.htm#ESRI_SECTION1_40F10593308A4718971C9A8F5FB9EC7D) to learn more.
9+
`ServiceFeatureTable` supports three request modes, which define how features are requested from the service and stored in the local table. The feature request modes have different performance characteristics. Use **On interaction cache** in scenarios with large amounts of infrequently edited data.
1010

1111
## How to use the sample
1212

@@ -20,8 +20,8 @@ Run the sample and pan and zoom around the map. With each interaction, features
2020
## Relevant API
2121

2222
* FeatureLayer
23-
* ServiceFeatureTable.FeatureRequestMode
2423
* ServiceFeatureTable
24+
* ServiceFeatureTable.FeatureRequestMode
2525

2626
## About the data
2727

feature_layers/service-feature-table-manual-cache/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Display a feature layer from a service using the **manual cache** feature reques
66

77
## Use case
88

9-
`ServiceFeatureTable` supports three request modes, which define how features are requested from the service and stored in the local table. The feature request modes have different performance characteristics. Use **manual cache** in scenarios where you want to explicitly control requests for features. See [Table performance concepts](https://developers.arcgis.com/net/latest/wpf/guide/layers.htm#ESRI_SECTION1_40F10593308A4718971C9A8F5FB9EC7D) to learn more.
9+
`ServiceFeatureTable` supports three request modes, which define how features are requested from the service and stored in the local table. The feature request modes have different performance characteristics. Use **manual cache** in scenarios where you want to explicitly control requests for features.
1010

1111
## How to use the sample
1212

@@ -23,13 +23,13 @@ Note: Maximum of Features returned is set to 1000.
2323
## Relevant API
2424

2525
* FeatureLayer
26-
* ServiceFeatureTable.FeatureRequestMode
2726
* ServiceFeatureTable
27+
* ServiceFeatureTable.FeatureRequestMode
2828

2929
## About the data
3030

3131
The samples uses an [incident feature layer](https://sampleserver6.arcgisonline.com/arcgis/rest/services/SF311/FeatureServer/0) queried to show tree maintenance or damage. The sample opens with an initial visible extent centered over San Francisco.
32-
32+
3333
## Additional information
3434

3535
In **manual cache** mode, features are never automatically populated from the service. All features are loaded manually using calls to `PopulateFromServiceAsync`.

feature_layers/service-feature-table-no-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Display a feature layer from a service using the **no cache** feature request mo
66

77
## Use case
88

9-
`ServiceFeatureTable` supports three request modes, which define how features are requested from the service and stored in the local table. The feature request modes have different performance characteristics. Use **no cache** in scenarios where you always want the freshest data. See [Table performance concepts](https://developers.arcgis.com/java/latest/guide/layers.htm#ESRI_SECTION1_40F10593308A4718971C9A8F5FB9EC7DD) in the *ArcGIS Runtime SDK for Java* guide to learn more.
9+
`ServiceFeatureTable` supports three request modes, which define how features are requested from the service and stored in the local table. The feature request modes have different performance characteristics. Use **no cache** in scenarios where you always want the freshest data.
1010

1111
## How to use the sample
1212

@@ -20,8 +20,8 @@ Run the sample and pan and zoom around the map. With each interaction, new featu
2020
## Relevant API
2121

2222
* FeatureLayer
23-
* ServiceFeatureTable.FeatureRequestMode
2423
* ServiceFeatureTable
24+
* ServiceFeatureTable.FeatureRequestMode
2525

2626
## About the data
2727

kml/play-a-kml-tour/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The sample will load the KMZ file from ArcGIS Online. Click the play button to s
2727

2828
## About the data
2929

30-
This sample uses a custom tour created by a member of the ArcGIS Runtime SDK samples team. When you play the tour, you'll see a narrated journey through some of Esri's offices.
30+
This sample uses a custom tour created by a member of the ArcGIS Runtime API samples team. When you play the tour, you'll see a narrated journey through some of Esri's offices.
3131

3232
## Additional information
3333

map/apply-scheduled-updates-to-preplanned-map-area/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The data in this sample shows the roads and trails in the Canyonlands National P
4040

4141
## Additional information
4242

43-
**Note:** preplanned areas using the Scheduled Updates workflow are read-only. For preplanned areas that can be edited on the end-user device, see [Take a map offline (preplanned)](https://developers.arcgis.com/java/latest/guide/take-map-offline-preplanned.htm) in the *ArcGIS Runtime SDK for Java* guide.
43+
**Note:** preplanned areas using the Scheduled Updates workflow are read-only. For preplanned areas that can be edited on the end-user device, see the [Download preplanned map area](https://developers.arcgis.com/java/sample-code/download-a-preplanned-map-area/) sample. For more information about offline workflows, see [Offline maps, scenes, and data](https://developers.arcgis.com/documentation/mapping-apis-and-location-services/offline/) in the *ArcGIS Developers* guide.
4444

4545
## Tags
4646

map/download-preplanned-map/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Take a map offline using a preplanned map area.
66

77
## Use case
88

9-
Generating offline maps on demand for a specific area can be time consuming for users and a processing load on the server. If areas of interest are known ahead of time, a web map author can pre-create packages for these areas. This way, the generation only needs to happen once, making the workflow more efficient for users and servers.
9+
Generating offline maps on demand for a specific area can be time consuming for users and a processing load on the server. If areas of interest are known ahead of time, a web map author can pre-create packages for these areas. This way, the generation only needs to happen once, making the workflow more efficient for users and servers.
1010

1111
An archaeology team could define preplanned map areas for dig sites which can be taken offline for field use.
1212

@@ -47,8 +47,8 @@ The [Naperville stormwater network map](https://arcgisruntime.maps.arcgis.com/ho
4747
* `SYNC_WITH_FEATURE_SERVICES` - Changes, including local edits, will be synced directly with the underlying feature services.
4848
* `DOWNLOAD_SCHEDULED_UPDATES` - Scheduled, read-only updates will be downloaded from the online map area and applied to the local mobile geodatabases.
4949

50-
See [Take a map offline - preplanned](https://developers.arcgis.com/java/latest/guide/take-map-offline-preplanned.htm) to learn about preplanned workflows, including how to define preplanned areas in ArcGIS Online. Alternatively, visit [Take a map offline - on demand](https://developers.arcgis.com/java/latest/guide/take-map-offline-ondemand.htm) or refer to the sample 'Generate Offline Map' to learn about the on-demand workflow and see how the workflows differ.
50+
For more information about offline workflows, see [Offline maps, scenes, and data](https://developers.arcgis.com/documentation/mapping-apis-and-location-services/offline/) in the *ArcGIS Developers* guide.
5151

5252
## Tags
5353

54-
map area, offline, preplanned, pre-planned
54+
map area, offline, pre-planned, preplanned

ogc/open-street-map-layer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When the sample opens, it will automatically display the map with the OpenStreet
2626

2727
The attribution text will be set to the required OpenStreetMap attribution automatically.
2828

29-
Apps that expect to make many requests to OpenStreetMap should consider using an alternative tile server via the `WebTiledLayer` class. See [layer types described](https://developers.arcgis.com/java/latest/guide/layer-types-described.htm#ESRI_SECTION1_B995CCAB20584F91890B3614CF16CF43) in the *ArcGIS Runtime SDK for Java* documentation for more information on OpenStreetMap usage restrictions and alternatives.
29+
Apps that expect to make many requests to OpenStreetMap should consider using an alternative tile server via the `WebTiledLayer` class.
3030

3131
Esri now hosts an [OpenStreetMap vector layer on ArcGIS Online](https://www.arcgis.com/home/item.html?id=3e1a00aeae81496587988075fe529f71) that uses recent OpenStreetMap data in conjunction with a style matching the default OpenStreetMap style. This layer is not subject to the tile access restrictions that apply to tiles fetched from OpenStreetMap.org.
3232

0 commit comments

Comments
 (0)