Book Image

Learning ArcGIS Runtime SDK for .NET

By : Ron Vincent
Book Image

Learning ArcGIS Runtime SDK for .NET

By: Ron Vincent

Overview of this book

ArcGIS is a geographic information system (GIS) that enables you to work with maps and geographic information. It can be used to create and utilize maps, compile geographic data, analyze mapped information, share and discover geographic information and manage geographic information in a database. This book starts by showing you where ArcGIS Runtime fits within Esri’s overall platform strategy. You'll create an initial map using the SDK, then use it to get an understanding of the MVVM model. You'll find out about the different kinds of layers and start adding layers, and you'll learn to transform maps into a 3D scene. The next chapters will help you comprehend and extract information contained in the maps using co-ordinates and layer objects. Towards the end, you will learn to set the symbology, decide whether to use 2D or 3D, see how to implement 2D or 3D, and learn to search and find objects. You'll also get to grips with many other standard features of the Application Programming Interface (API), including create applications and finally testing, licensing, and deploying them. Once completed, you will be able to meet most of the common requirements of any mapping application for desktop or mobile platforms.
Table of Contents (19 chapters)
Learning ArcGIS Runtime SDK for .NET
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
3
Maps and Layers
12
Configuring, Licensing, and Deploying
Index

Chapter 11. Testing and Performance

Now that we've surveyed the API and SDK of ArcGIS Runtime, it's time to turn our attention to testing our app, while at the same time making sure that it is performant. Test and performance tend to go together because as you test your app you'll discover performance problems. In this chapter, we'll discuss testing and performance so that you will gain a solid understand of the concepts and techniques required to address these two important subjects. We will first learn about unit testing in general, and then learn how to do unit testing with MVVM via MVVM Light. We will also learn how to make sure our app runs as quickly as possible, both from the server side and the client side. In summary, the following topics will be addressed:

  • General unit testing

  • Using testing with ArcGIS Runtime

  • Using testing with MVVM Light

  • Test-driven development

  • Unit testing with Windows Store

  • Service-side performance

  • Client-side performance