Welcome to the GeoDev How-to series!
This is a series of articles designed to show you how to build mapping applications quickly with the ArcGIS platform. They assume you’re interested in code, you are interested in mapping, geodata and analyses, and you want to build a web or mobile app quickly.
In this how-to you will...
Step 1: Sign up for a free ArcGIS Developer Subscription
The first step to building an app is to sign up for a free ArcGIS Developer Subscription. This account is your entry point to the entire ArcGIS platform. With a subscription you can:
Sign up for a developer subscription here.
Tip: Please note that there are actually three different types of ArcGIS accounts: 1) ArcGIS Online public accounts, 2) ArcGIS Organization accounts and 3) ArcGIS Developer accounts. If you have a public account, you will need to create a new developer account to get a developer subscription. If you already have an ArcGIS Organization account, you can just use that by logging into ArcGIS for Developers. Learn more about accounts here. |
Step 2: Learn how to build an ArcGIS Mapping App
There are a number of ways to build applications with the ArcGIS platform but here are the general steps.
1. Create or Access Data in the Cloud
In order to tell a story, every mapping app needs data. The easiest way to create, access and manage data is to store it in the cloud with ArcGIS Online as web layers. The two basic types of web layers are Feature Layers (Feature Services) and Tile Layers (Tile Services). Feature Services are just points, lines and polygons stored in the cloud. They also expose RESTful web services that provide you mapping and query functionality. After you create a feature service you can access it directly via the ArcGIS REST API but it’s often easier just to access them with the ArcGIS SDKs and APIs. Tile services are another type of data that you can store in ArcGIS Online. Tile services are also web services that you can access with your applications. These are handy when you have large datasets and you want to draw them as images instead of rendering individual features. Learn more about web layers and services here.
There are three main ways to access data for your apps:
Here’s an example of using ArcGIS Online to search for coffee shop layers in Portland.
2. Design a Map and Perform Analyses
Before you write any code, it’s always best to do as much prototyping and analysis as possible using the ArcGIS Online Map Viewer. The viewer is a free online mapping app that lets you create maps, perform analyses and edit data. The viewer also provides the functionality to design and author nice maps. You can style map layers, change symbols, colors and textures, swap basemaps, configure pop-ups, and control layer visibility at different zoom levels. Any map that you create with the viewer can also be saved in ArcGIS Online and used directly in any app you build. Designing a good map is one of the most important aspects of mapping development, so this is a very important tool to get familiar with! Also, using the viewer will give you some exposure to what functionality is available at the API-level when it comes time to write code. Learn more about the map viewer here.
Here are a few other things you can do with the map viewer:
Here's an example of a map created and styled with the map viewer to show coffee shop density.
Tip: You can perform a number of different spatial and social-economic analyses with the map viewer. Learn more about the types of analyses you can do with ArcGIS Online and the map viewer here. |
3. Create and Share your App
The last part of the workflow is where you actually build an application. The two most common types of apps are web apps that you build with templates or the Web AppBuilder or custom mapping apps that you build with with the ArcGIS SDKs and APIs. In most cases, these apps consume maps, feature services or tile services directly. Learn more about the ArcGIS APIs here.
Here’s a brief list of the types of apps you can build:
Here’s an example of using the Web AppBuilder to design a web app that uses the coffee map created earlier.
Tip: Learn more about how to build your own HTML5 apps with the Web AppBuilder here. |
Step 3: Learn more about ArcGIS
If you are new to the ArcGIS platform, it’s also worth reviewing the following tools and resources and familiarizing yourself with some of the terminology before diving in too far.
Tools
API Documentation
Geospatial Web Services
Other Resources
Related Articles
GeoDev How-to: Getting Started with the ArcGIS Platform for Developers
GeoDev How-to: Design your first custom web mapping app with the ArcGIS Platform
GeoDev How-to: Perform spatial analyses for your mapping app [coming soon]
...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.