From 17a5c712ac9090237c4bc11cdcb935e4f8aa2160 Mon Sep 17 00:00:00 2001 From: Gary Sheppard Date: Tue, 8 Jan 2019 18:05:25 -0500 Subject: [PATCH] Added README and navigation (#155) Resolves #116 --- README.md | 7 ++++++- runtime-workshop/exercises/Android/README.md | 7 +++++++ runtime-workshop/exercises/AppStudio_QTQML/README.md | 7 +++++++ runtime-workshop/exercises/Java/README.md | 7 +++++++ runtime-workshop/exercises/Qt/Qt Quick/README.md | 7 +++++++ runtime-workshop/exercises/README.md | 9 +++++++++ runtime-workshop/exercises/dotNETWPF/README.md | 7 +++++++ runtime-workshop/exercises/iOS/Swift/README.md | 7 +++++++ runtime-workshop/exercises/macOS/Swift/README.md | 7 +++++++ 9 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 runtime-workshop/exercises/Android/README.md create mode 100644 runtime-workshop/exercises/AppStudio_QTQML/README.md create mode 100644 runtime-workshop/exercises/Java/README.md create mode 100644 runtime-workshop/exercises/Qt/Qt Quick/README.md create mode 100644 runtime-workshop/exercises/README.md create mode 100644 runtime-workshop/exercises/dotNETWPF/README.md create mode 100644 runtime-workshop/exercises/iOS/Swift/README.md create mode 100644 runtime-workshop/exercises/macOS/Swift/README.md diff --git a/README.md b/README.md index add6504..dbdd8bf 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # GeoDev D.C. Labs -Lab exercises for Esri GeoDev events held in the Washington, D.C., area. + +These lab exercises were developed for Esri GeoDev events held in the Washington, D.C., area. They are available for anyone who wants to get to know ArcGIS Runtime using step-by-step tutorial-style exercises in a variety of development platforms. + +Do you want to go step by step? [Go to the exercises.](runtime-workshop/exercises/README.md) + +Do you want to cut to the chase and see the code? [Go to the solutions.](runtime-workshop/solutions) ## Licensing diff --git a/runtime-workshop/exercises/Android/README.md b/runtime-workshop/exercises/Android/README.md new file mode 100644 index 0000000..165d600 --- /dev/null +++ b/runtime-workshop/exercises/Android/README.md @@ -0,0 +1,7 @@ +# Android exercises + +- [Exercise 1: Map and Scene](Exercise%201%20Map%20and%20Scene.md) +- [Exercise 2: Add Zoom In and Zoom Out Buttons](Exercise%202%20Zoom%20Buttons.md) +- [Exercise 3: Add Operational Layers](Exercise%203%20Operational%20Layers.md) +- [Exercise 4: Buffer a Point and Query Features](Exercise%204%20Buffer%20and%20Query.md) +- [Exercise 5: Routing](Exercise%205%20Routing.md) diff --git a/runtime-workshop/exercises/AppStudio_QTQML/README.md b/runtime-workshop/exercises/AppStudio_QTQML/README.md new file mode 100644 index 0000000..d358d93 --- /dev/null +++ b/runtime-workshop/exercises/AppStudio_QTQML/README.md @@ -0,0 +1,7 @@ +# AppStudio for ArcGIS (QML) exercises + +- [Exercise 1: Map](Exercise%201%20Map.md) +- [Exercise 2: Add Zoom In, and Zoom Out, and Location Buttons](Exercise%202%20Zoom%20Buttons.md) +- [Exercise 3: Add a Feature Service](Exercise%203%20Add%20Feature%20Service.md) +- [Exercise 4: Buffer a Point and Query Features](Exercise%204%20Buffer%20and%20Query.md) +- [Exercise 5: Service Area](Exercise%205%20ServiceArea.md) diff --git a/runtime-workshop/exercises/Java/README.md b/runtime-workshop/exercises/Java/README.md new file mode 100644 index 0000000..7873f7e --- /dev/null +++ b/runtime-workshop/exercises/Java/README.md @@ -0,0 +1,7 @@ +# Java exercises + +- [Exercise 1: Map and Scene](Exercise%201%20Map%20and%20Scene.md) +- [Exercise 2: Add Zoom In and Zoom Out Buttons](Exercise%202%20Zoom%20Buttons.md) +- [Exercise 3: Add Operational Layers](Exercise%203%20Operational%20Layers.md) +- [Exercise 4: Buffer a Point and Query Features](Exercise%204%20Buffer%20and%20Query.md) +- [Exercise 5: Routing](Exercise%205%20Routing.md) diff --git a/runtime-workshop/exercises/Qt/Qt Quick/README.md b/runtime-workshop/exercises/Qt/Qt Quick/README.md new file mode 100644 index 0000000..6f78b5b --- /dev/null +++ b/runtime-workshop/exercises/Qt/Qt Quick/README.md @@ -0,0 +1,7 @@ +# Qt (Qt Quick) exercises + +- [Exercise 1: Map and Scene](Exercise%201%20Map%20and%20Scene.md) +- [Exercise 2: Add Zoom In and Zoom Out Buttons](Exercise%202%20Zoom%20Buttons.md) +- [Exercise 3: Add Operational Layers](Exercise%203%20Operational%20Layers.md) +- [Exercise 4: Buffer a Point and Query Features](Exercise%204%20Buffer%20and%20Query.md) +- [Exercise 5: Routing](Exercise%205%20Routing.md) diff --git a/runtime-workshop/exercises/README.md b/runtime-workshop/exercises/README.md new file mode 100644 index 0000000..f8a383d --- /dev/null +++ b/runtime-workshop/exercises/README.md @@ -0,0 +1,9 @@ +# Exercises + +- [Android](Android/README.md) +- [AppStudio for ArcGIS (QML)](AppStudio_QTQML/README.md) +- [.NET (WPF)](dotNETWPF/README.md) +- [iOS](iOS/Swift/README.md) +- [Java](Java/README.md) +- [macOS](macOS/Swift/README.md) +- [Qt](Qt/Qt%20Quick/README.md) diff --git a/runtime-workshop/exercises/dotNETWPF/README.md b/runtime-workshop/exercises/dotNETWPF/README.md new file mode 100644 index 0000000..4c80be3 --- /dev/null +++ b/runtime-workshop/exercises/dotNETWPF/README.md @@ -0,0 +1,7 @@ +# .NET (WPF) exercises + +- [Exercise 1: Map and Scene](Exercise%201%20Map%20and%20Scene.md) +- [Exercise 2: Add Zoom In and Zoom Out Buttons](Exercise%202%20Zoom%20Buttons.md) +- [Exercise 3: Add a Local Feature Layer](Exercise%203%20Operational%20Layer.md) +- [Exercise 4: Buffer a Point and Query Features](Exercise%204%20Buffer%20and%20Query.md) +- [Exercise 5: Routing](Exercise%205%20Routing.md) diff --git a/runtime-workshop/exercises/iOS/Swift/README.md b/runtime-workshop/exercises/iOS/Swift/README.md new file mode 100644 index 0000000..cbd99e5 --- /dev/null +++ b/runtime-workshop/exercises/iOS/Swift/README.md @@ -0,0 +1,7 @@ +# iOS (Swift) exercises + +- [Exercise 1: Map and Scene](Exercise%201%20Map%20and%20Scene.md) +- [Exercise 2: Add Zoom In and Zoom Out Buttons](Exercise%202%20Zoom%20Buttons.md) +- [Exercise 3: Add Operational Layers](Exercise%203%20Operational%20Layers.md) +- [Exercise 4: Buffer a Point and Query Features](Exercise%204%20Buffer%20and%20Query.md) +- [Exercise 5: Routing](Exercise%205%20Routing.md) diff --git a/runtime-workshop/exercises/macOS/Swift/README.md b/runtime-workshop/exercises/macOS/Swift/README.md new file mode 100644 index 0000000..a22be99 --- /dev/null +++ b/runtime-workshop/exercises/macOS/Swift/README.md @@ -0,0 +1,7 @@ +# macOS (Swift) exercises + +- [Exercise 1: Map and Scene](Exercise%201%20Map%20and%20Scene.md) +- [Exercise 2: Add Zoom In and Zoom Out Buttons](Exercise%202%20Zoom%20Buttons.md) +- [Exercise 3: Add Operational Layers](Exercise%203%20Operational%20Layers.md) +- [Exercise 4: Buffer a Point and Query Features](Exercise%204%20Buffer%20and%20Query.md) +- [Exercise 5: Routing](Exercise%205%20Routing.md)