ArcGIS Runtime SDK for Android: Building Apps. Shelly Gill

Size: px
Start display at page:

Download "ArcGIS Runtime SDK for Android: Building Apps. Shelly Gill"

Transcription

1 ArcGIS Runtime SDK for Android: Building Apps Shelly Gill

2 Agenda Getting started API - Android Runtime SDK patterns - Common functions, workflows The Android platform Other sessions covered Runtime SDK generally: An Introduction to the API and Architecture, Building 3D Applications, Working with Maps Online and Offline

3 Getting started With a tutorial, gradle, or samples

4 Getting started with the SDK 1. Sign up for free Developers testing account - 50 credits a month, premium content, register apps, test tokens 2. Install free Android Studio IDE Get dependencies automatically with Gradle and try it out - Write an app!

5 New developers - Follow first map app tutorial Developers site > Android > Guide Help topics Getting started > Develop your first map app Step-by-step guide Or try Dev Labs - 8 so far -

6 Existing developers - clone samples or example apps GitHub - API samples - Java, and adding Kotlin - Example apps Clone/checkout/download, import, and run

7 Existing apps - add AAR dependency Maven repository hosted by Bintray - AARs of current and previous releases Project build.gradle repositories { maven { url ' } App module build.gradle dependencies { compile 'com.esri.arcgisruntime:arcgis-android: ' }

8 SDK resources Developers site Doc guide, API Reference - Downloadable SDK - Application support GitHub for samples and example apps GeoNet user communities

9 Example apps Real world apps based on use cases collected from users Complete working apps with detailed instructions for getting started Supporting documentation - code, data creation, app workflows, customization Open sourced on GitHub (Apache 2.0 license) Current Android apps: - Maps App, Ecological Marine Units, Nearby Places, Offline Mapbook Future apps: - Mobile data collection, Situational awareness - Vote at

10 Functionality Build apps for Android devices Visualize geographic data maps, scenes, layers, graphics - feature, dynamic, tiled, raster, Identify features, query data, and display info pop-ups Share maps and content across ArcGIS platform Offline maps, data, routing, geocoding Powerful analysis and local geometric operations

11 API

12 ListenableFuture pattern Asynchronous methods use ListenableFuture - Inherits from java Future interface - A promise to return a result - Add done listener, or call get (blocking) Can simplify asynchronous programming - Done called back on UI thread if listener added on UI thread - We take care of executing operations on background threads - Standard pattern for cancellation, errors

13 ListenableFuture Sample identify-graphics-hittest

14 // Get future ListenableFuture<Boolean> = mmapview.setviewpointasync(firstviewpoint, 3); // Add done listener booleanlistenablefuture.adddonelistener(new Runnable() public void run() { try { // get result of the future if (MainActivity.this.booleanListenableFuture.get()) { // Proceed with more mmapview.setviewpointasync(secondviewpoint, 3); } } catch (InterruptedException ie) { // user interrupted the operation } catch (ExecutionException ee) { // a problem with executing the call or returning result } } });

15 ListenableList pattern Bind to data Add listener to know when content changes - Adds and removes Implemented on - Graphics in a GraphicsOverlay - LayerList (operational, base, reference layers) - Sublayers in SublayerList - Bookmarks

16 Loadable pattern Java implementation Loadable resources - Maps, layers, portal item, geodatabase, Does not use ListenableFuture - Specific pattern for load errors - Has additional states - Can reload if failed Loads dependent loadables

17 Map and MapView Content and presentation are separated ArcGISMap - separate class that defines content - Listenable lists of Layer, Bookmark - MapView references ArcGISMap - Open a map, or build in code, modify, save to portal MapView extends android.view.viewgroup - GraphicsOverlay(s), LocationDisplay, - Control visible extent of ArcGISMap using Viewpoints Don't forget andoid.permission.internet for any online layers, basemaps, portals, etc

18 Scene and SceneView New in Android at v100.1 ArcGISScene content - SceneView references ArcGISScene - Basemap, ElevationSurface, Layers, - Build in code SceneView extends android.view.viewgroup - Control view using Viewpoints and Cameras Currently requires OpenGL2.0 - Covers all devices connecting to Google Play

19 Scene and layer Code Display a scene Add elevation surface Add a scene layer

20 // create a scene and add a basemap to it ArcGISScene scene = new ArcGISScene(); scene.setbasemap(basemap.createimagery()); msceneview = findviewbyid(r.id.sceneview); msceneview.setscene(scene); // create an elevation source, and add this to the base surface of the scene ArcGISTiledElevationSource elevationsource = new ArcGISTiledElevationSource(getResources().getString(R.string.elevation_source)); scene.getbasesurface().getelevationsources().add(elevationsource); // add a scene service to the scene for viewing buildings ArcGISSceneLayer scenelayer = new ArcGISSceneLayer( getresources().getstring(r.string.buildings_service)); scene.getoperationallayers().add(scenelayer); // add a camera and initial camera position Camera camera = new Camera(48.378, , 200, 345, 65, 0); msceneview.setviewpointcamera(camera);

21 Display device location Uses Android platform location providers - GPS and network location, if enabled Customizable appearance AutoPan behavior pan, rotate - Navigation (car) - CompassNavigation (waypoint) - Recenter (no rotation) LocationDisplay - MapView.getLocationDisplay() - LocationDisplay.startAsync() Only Position Position & Heading Position & Course

22 LocationDisplay top tips Don t forget - android.permission.access_coarse_location + - android.permission.access_fine_location User interactive navigation cancels auto-pan - MapView.addNavigationChangedListener when isnavigating returns to false, re-set the AutoPanMode - Or disable interactive navigation User interactive navigation can also change scale - Again can use addnavigationchangedlistener and re-set map scale if required Can create own LocationDataSource if required

23 Handling touch on the map Default navigation gestures - Swipe to pan - Double-tap = zoom in, two-finger-tap = zoom out - Pinch to zoom and rotate - Tap and hold then swipe up/down for continuous zoom Change interactive navigation by creating custom touch listener - Inherit from DefaultMapViewOnTouchListener - Implement View.OnTouchListener

24 Handling gestures Sample identify-graphics-hittest

25 Integration with the ArcGIS Platform using Portal API Portal - Connection to ArcGIS Online or an on-premises Portal - Authenticated and anonymous access PortalUser - Current authenticated user or other users PortalItem - Represent any item type - Create, update, delete items and PortalFolders - Share publicly, organization, or PortalGroup

26 MobileMapPackage Provide offline maps so users can be productive when network connectivity is poor or nonexistent MobileMapPackage class - maps, layers, data, locators, transportation networks Desktop pattern - Create MMPK in Pro Services pattern - Use OfflineMapTask ArcGIS Runtime SDKs: Working with Maps Online and Offline 2pm - B 07 - B 08

27 Offline Mapbook Example App Offline Mapbook Example App

28 Authentication default challenge handler Cross-platform security pattern - Challenges, challenge handlers, OAuth2, tokens DefaultAuthenticationChallengeHandler - Out of the box UX for challenges - Network credential: HTTP secured service / Integrated Windows Authentication (IWA). - ArcGIS Tokens: proprietary token-based authentication - PKI certificates - Self signed certificates Create own handler if required - Implement AuthenticationChallengeHandler

29 Security pattern OAuth 2.0 Used by ArcGIS Online OAuthConfiguration - Provides challenge handling specifically for OAuth - Uses default Android browser app to display login UX Set this up - Create Application - Developers site account - Set DefaultAuthenticationChallengeHandler - Create OAuthConfiguration

30 Authentication code Maps App example app: AuthenticationManager DefaultAuthenticationChallengeHandler OAuthConfiguration

31 Android Platform

32 Android Platform Android platforms: connections to Google Play store 2 nd Oct 2017 Runtime SDK supports minimum Android API 16 ( Jelly Bean Android 4.1) defaultconfig { minsdkversion 16 } No need for separate JDK What about your deployments? - API 16 (Jelly Bean)? - API 19 (Kit Kat)? - API 24 Nougat or forward Nougat + Oreo Marshmallow Lollipop KitKat Jelly Bean Older

33 Android Studio 3 Significant update to Android Studio - IDE - Parameter hints, semantic highlighting - Tooling Debugging, Instant Apps templates, Android Profiler, new gradle plugin + optimizations Release Candidate 2 Oct 19 th Final released last night! Java 8 language features as standard Migrate projects forward from release Supports Kotlin

34 Kotlin New official language - Interoperable with Java, Java standard types - Open source, by JetBrains - Modern language features - Null safety/nullable types, default parameter values - Lambdas, inferred properties, higher order functions + function types, auto-casting Support in Runtime SDK - Migrating samples - Future plans for documentation - Example apps - ask at

35 In conclusion Free to get going - Android Studio - Free Developers account for testing - ArcGIS Runtime SDK for Android Runtime SDK support for wide range of functionality and workflows GeoNet questions, discussions, suggestions Feedback in the conference app

36

37 Thank You to Our Generous Sponsor

ArcGIS Runtime SDK for Android: Building Apps. Shelly Gill

ArcGIS Runtime SDK for Android: Building Apps. Shelly Gill ArcGIS Runtime SDK for Android: Building Apps Shelly Gill Agenda Getting started SDK Common patterns and Example Apps Android platform updates Kotlin Team goals for upcoming releases Other sessions ArcGIS

More information

ArcGIS Runtime SDK for Android An Introduction. Xueming

ArcGIS Runtime SDK for Android An Introduction. Xueming ArcGIS Runtime SDK for Android An Introduction Dan O Neill @jdoneill @doneill Xueming Wu @xuemingrocks Agenda Introduction to the ArcGIS Android SDK Maps & Layers Basemaps (Portal) Location Place Search

More information

ArcGIS Runtime SDK for Java: Building Apps. Tyler Schiewe

ArcGIS Runtime SDK for Java: Building Apps. Tyler Schiewe ArcGIS Runtime SDK for Java: Building Apps Tyler Schiewe Agenda Getting Started API Basics Patterns & Workflows Licensing and Deployment Questions Getting Started What You Get Code API Reference (Javadoc)

More information

ArcGIS Runtime SDK for Java: Building Apps. Mark Baird

ArcGIS Runtime SDK for Java: Building Apps. Mark Baird ArcGIS Runtime SDK for Java: Building Apps Mark Baird Agenda Getting started with 100.4 JavaFX Base maps, layers and lambdas Graphics overlays Offline data Licensing and deployment What is happening in

More information

ArcGIS Runtime SDK for.net Building Apps. Antti Kajanus David Cardella

ArcGIS Runtime SDK for.net Building Apps. Antti Kajanus David Cardella ArcGIS Runtime SDK for.net Building Apps Antti Kajanus akajanus@esri.com David Cardella dcardella@esri.com Thank You to Our Generous Sponsor SDK Highlights High-performance 2D and 3D mapping Integration

More information

Android. Lesson 1. Introduction. Android Developer Fundamentals. Android Developer Fundamentals. to Android 1

Android. Lesson 1. Introduction. Android Developer Fundamentals. Android Developer Fundamentals. to Android 1 Android Lesson 1 1 1 1.0 to Android 2 Contents Android is an ecosystem Android platform architecture Android Versions Challenges of Android app development App fundamentals 3 Android Ecosystem 4 What is

More information

Building Android Apps Runtime SDK for Android

Building Android Apps Runtime SDK for Android Building Android Apps Runtime SDK for Android Dan O Neill & Alan Lucas Introductions What do you do What do we do - Android Development Team - Edinburgh Alan Lucas - https://github.com/alan-edi - Alaska

More information

ArcGIS Runtime SDK for ios and macos: Building Apps. Suganya Baskaran, Gagandeep Singh

ArcGIS Runtime SDK for ios and macos: Building Apps. Suganya Baskaran, Gagandeep Singh ArcGIS Runtime SDK for ios and macos: Building Apps Suganya Baskaran, Gagandeep Singh Get Started Core Components Agenda - Display Map Content - Search for Content - Perform Analysis - Edit Content Summary

More information

ArcGIS Runtime SDK for.net Getting Started. Jo Fraley

ArcGIS Runtime SDK for.net Getting Started. Jo Fraley ArcGIS Runtime SDK for.net Getting Started Jo Fraley Agenda What is the ArcGIS Runtime? What s new for ArcGIS developers? ArcGIS Runtime SDK 10.2 for WPF ArcGIS Runtime SDK for.net Building Windows Store

More information

ArcGIS Runtime SDK for Java: A Beginner s Guide. Mark Baird JC Malott

ArcGIS Runtime SDK for Java: A Beginner s Guide. Mark Baird JC Malott ArcGIS Runtime SDK for Java: A Beginner s Guide Mark Baird JC Malott Outline Intro to ArcGIS Runtime SDKs Get started: download and install the SDK Tour of the functionality of the API Basics of building

More information

Developing mapping applications with ArcGIS Runtime SDK for ios. Divesh Goyal Eric Ito

Developing mapping applications with ArcGIS Runtime SDK for ios. Divesh Goyal Eric Ito Developing mapping applications with ArcGIS Runtime SDK for ios Divesh Goyal Eric Ito Agenda Directions & Navigation Finding places and addresses Accessing your map content What is a mapping app? Introduction

More information

Getting Started with ArcGIS Runtime SDK for Java SE

Getting Started with ArcGIS Runtime SDK for Java SE Getting Started with ArcGIS Runtime SDK for Java SE Elise Acheson, Vijay Gandhi, and Eric Bader Demo Source code: https://github.com/esri/arcgis-runtime-samples-java/tree/master/devsummit-2014 Video Recording:

More information

Hit the Ground Running. ArcGIS Runtime SDK for Android

Hit the Ground Running. ArcGIS Runtime SDK for Android Hit the Ground Running ArcGIS Runtime SDK for Android Presenters Dan O Neill - @jdoneill Xueming Wu Introduction to the Android SDK Maps & Layers Analysis & Display Information Place Search Offline Patterns

More information

ArcGIS Runtime: Working with Maps Online and Offline. Will Crick Justin Colville [Euan Cameron]

ArcGIS Runtime: Working with Maps Online and Offline. Will Crick Justin Colville [Euan Cameron] ArcGIS Runtime: Working with Maps Online and Offline Will Crick Justin Colville [Euan Cameron] ArcGIS Runtime session tracks at Dev Summit 2017 ArcGIS Runtime SDKs share a common core, architecture and

More information

Building Apps with the ArcGIS Runtime SDK for ios

Building Apps with the ArcGIS Runtime SDK for ios Building Apps with the ArcGIS Runtime SDK for ios Nick Furness @geeknixta ArcGIS Runtime SDKs 10.2 Released! Runtime platforms OS X Desktop Desktop Client Windows Store QT ios.net JavaSE Mobile Android

More information

Android Application Development using Kotlin

Android Application Development using Kotlin Android Application Development using Kotlin 1. Introduction to Kotlin a. Kotlin History b. Kotlin Advantages c. How Kotlin Program Work? d. Kotlin software Prerequisites i. Installing Java JDK and JRE

More information

ArcGIS Runtime SDKs Building Offline Apps. Nick Furness

ArcGIS Runtime SDKs Building Offline Apps. Nick Furness ArcGIS Runtime SDKs Building Offline Apps Nick Furness Agenda The basics - Considerations - Building blocks - Service types New! Offline maps New! Preplanned workflow What we are covering and what not

More information

Web AppBuilder Presented by

Web AppBuilder Presented by Web AppBuilder Presented by Agenda Product overview Web AppBuilder for ArcGIS tour What s new in the ArcGIS Online June 2016 update Customization Community and Resources Summary The ArcGIS Platform enables

More information

ArcGIS Runtime: Building Cross-Platform Apps. Rex Hansen Mark Baird Michael Tims Morten Nielsen

ArcGIS Runtime: Building Cross-Platform Apps. Rex Hansen Mark Baird Michael Tims Morten Nielsen ArcGIS Runtime: Building Cross-Platform Apps Rex Hansen Mark Baird Michael Tims Morten Nielsen Agenda Cross-platform review ArcGIS Runtime cross-platform options - Java - Qt -.NET ArcGIS Runtime: Building

More information

ArcGIS Runtime SDK for.net Building Apps. Rex Hansen

ArcGIS Runtime SDK for.net Building Apps. Rex Hansen ArcGIS Runtime SDK for.net Building Apps Rex Hansen Thank You to Our Sponsors Agenda Overview of the ArcGIS Runtime SDK for.net Resources for developers Common developer workflows: App templates, NuGet

More information

ArcGIS Runtime SDK for.net: Building Xamarin Apps. Rich Zwaap Thad Tilton

ArcGIS Runtime SDK for.net: Building Xamarin Apps. Rich Zwaap Thad Tilton ArcGIS Runtime SDK for.net: Building Xamarin Apps Rich Zwaap Thad Tilton ArcGIS Runtime session tracks at DevSummit 2018 ArcGIS Runtime SDKs share a common core, architecture and design Functional sessions

More information

Integrate GIS Functionality into Windows Apps with ArcGIS Runtime SDK for.net

Integrate GIS Functionality into Windows Apps with ArcGIS Runtime SDK for.net Integrate GIS Functionality into Windows Apps with ArcGIS Runtime SDK for.net By Rex Hansen, Esri ArcGIS Runtime SDK for.net The first commercial edition of the ArcGIS Runtime SDK for the Microsoft.NET

More information

Building Java Apps with ArcGIS Runtime SDK

Building Java Apps with ArcGIS Runtime SDK Building Java Apps with ArcGIS Runtime SDK Mark Baird and Vijay Gandhi A step back in time Map making 50 years ago - http://www.nls.uk/exhibitions/bartholomew/maps-engraver - http://www.nls.uk/exhibitions/bartholomew/printing

More information

ArcGIS Runtime SDKs: Building a Routing Application. Frank Kish Konstantin Kutsner

ArcGIS Runtime SDKs: Building a Routing Application. Frank Kish Konstantin Kutsner ArcGIS Runtime SDKs: Building a Routing Application Frank Kish Konstantin Kutsner Overview What goes into a routing application Data connected \ disconnected Demo creating mmpk API Demo code Other Resources

More information

Creating Web Mapping Applications. Nikki Golding

Creating Web Mapping Applications. Nikki Golding Creating Web Mapping Applications Nikki Golding Agenda Web Mapping and Map Services Fundamentals ArcGIS Web Mapping Applications - ArcGIS.com Viewer - ArcGIS Explorer Online - ArcGIS Viewer for Flex -

More information

ArcGIS Runtime SDK for Qt: Building Apps. Koushik Hajra and Lucas Danzinger

ArcGIS Runtime SDK for Qt: Building Apps. Koushik Hajra and Lucas Danzinger ArcGIS Runtime SDK for Qt: Building Apps Koushik Hajra and Lucas Danzinger Cross-platform apps Agenda for today Intro to Qt Framework and ArcGIS Runtime SDK for Qt App design patterns with this SDK SDK

More information

Developers Road Map to ArcGIS Desktop and ArcGIS Engine

Developers Road Map to ArcGIS Desktop and ArcGIS Engine Developers Road Map to ArcGIS Desktop and ArcGIS Engine Core ArcObjects Desktop Team ESRI Developer Summit 2008 1 Agenda Dev Summit ArcGIS Developer Opportunities Desktop 9.3 SDK Engine 9.3 SDK Explorer

More information

ArcGIS Enterprise: Portal Administration BILL MAJOR CRAIG CLEVELAND

ArcGIS Enterprise: Portal Administration BILL MAJOR CRAIG CLEVELAND ArcGIS Enterprise: Portal Administration BILL MAJOR CRAIG CLEVELAND Agenda Welcome & Introduction to ArcGIS Enterprise Portal for ArcGIS - Basic Configuration - Advanced Configuration - Deploying Apps

More information

Best Development Practices and Patterns Using ArcGIS Runtime SDK for Android. Xueming Wu Puneet Prakash

Best Development Practices and Patterns Using ArcGIS Runtime SDK for Android. Xueming Wu Puneet Prakash Best Development Practices and Patterns Using ArcGIS Runtime SDK for Android Xueming Wu Puneet Prakash Agenda Introduction Developer Popup Feature Highlight & Drawing Order Road Ahead for the Runtime SDKs

More information

BlackBerry Developer Global Tour. Android. Table of Contents

BlackBerry Developer Global Tour. Android. Table of Contents BlackBerry Developer Global Tour Android Table of Contents Page 2 of 55 Session - Set Up the BlackBerry Dynamics Development Environment... 5 Overview... 5 Compatibility... 5 Prepare for Application Development...

More information

Getting Started with ArcGIS Runtime SDK for the Microsoft.NET Framework. Morten Nielsen Mike Branscomb Antti Kajanus Rex Hansen

Getting Started with ArcGIS Runtime SDK for the Microsoft.NET Framework. Morten Nielsen Mike Branscomb Antti Kajanus Rex Hansen Getting Started with ArcGIS Runtime SDK for the Microsoft.NET Framework Morten Nielsen Mike Branscomb Antti Kajanus Rex Hansen Agenda What is the ArcGIS Runtime? ArcGIS Runtime SDK for.net - Platform -

More information

Web AppBuilder for ArcGIS: JavaScript Apps Made Easy

Web AppBuilder for ArcGIS: JavaScript Apps Made Easy Web AppBuilder for ArcGIS: JavaScript Apps Made Easy Ryan Sellman @rcsellman Agenda Product overview Web AppBuilder for ArcGIS tour Customization Community and Resources Summary The ArcGIS Platform enables

More information

Building Applications with the ArcGIS Runtime SDK for WPF

Building Applications with the ArcGIS Runtime SDK for WPF Esri International User Conference San Diego, California Technical Workshops 24 th July 2012 Building Applications with the ArcGIS Runtime SDK for WPF Euan Cameron & Paul Pilkington Agenda Introduction

More information

Building Applications with ArcGIS Runtime SDK for Android Part II. Will Crick Dan O Neill

Building Applications with ArcGIS Runtime SDK for Android Part II. Will Crick Dan O Neill Building Applications with ArcGIS Runtime SDK for Android Part II Will Crick Dan O Neill Agenda Intro Connected editing summary Offline capabilities - Local features - Geometry Engine Platform integration

More information

Configuring and Customizing the ArcGIS Viewer for Silverlight. Katy Dalton

Configuring and Customizing the ArcGIS Viewer for Silverlight. Katy Dalton Configuring and Customizing the ArcGIS Viewer for Silverlight Katy Dalton kdalton@esri.com Agenda Overview of the ArcGIS Viewer for Silverlight Extensibility endpoints - Tools, Behaviors, Layouts, Controls

More information

Building Applications with ArcGIS Runtime SDK for ios - Part I. Divesh Goyal Mark Dostal

Building Applications with ArcGIS Runtime SDK for ios - Part I. Divesh Goyal Mark Dostal Building Applications with ArcGIS Runtime SDK for ios - Part I Divesh Goyal Mark Dostal Agenda The ArcGIS System Using the Runtime SDK for ios - Display Maps - Perform Analysis - Visualize Results Q&A

More information

ArcGIS Viewer for Flex An Introduction

ArcGIS Viewer for Flex An Introduction 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop ArcGIS Viewer for Flex An Introduction Bjorn Svensson and Heather Gonzago @Bjorn_Svensson @hgonzago Esri

More information

Sharing Web Layers and Services in the ArcGIS Platform. Melanie Summers and Ty Fitzpatrick

Sharing Web Layers and Services in the ArcGIS Platform. Melanie Summers and Ty Fitzpatrick Sharing Web Layers and Services in the Platform Melanie Summers and Ty Fitzpatrick Agenda Platform overview - Web GIS information model - Two deployment options Pro Sharing - User experience and workflows

More information

ArcGIS Runtime SDK for WPF

ArcGIS Runtime SDK for WPF Esri Developer Summit in Europe November 9 th Rotterdam ArcGIS Runtime SDK for WPF Mike Branscomb Mark Baird Agenda Introduction SDK Building the Map Query Spatial Analysis Editing and Geometry Programming

More information

TRAINING GUIDE. Mobile for Administrators Part 3 - GIS

TRAINING GUIDE. Mobile for Administrators Part 3 - GIS TRAINING GUIDE Mobile for Administrators Part 3 - GIS Mobile for Administrators - GIS One of the critical components of mobile is GIS, and it can also be the most complex. The mobile GIS maps are designed

More information

TRAINING GUIDE. Tablet: Cradle to Mobile GIS

TRAINING GUIDE. Tablet: Cradle to Mobile GIS TRAINING GUIDE Tablet: Cradle to Mobile GIS Tablet Cradle to Mobile One of the critical components of mobile is the GIS piece, and also can be the most complex. The mobile GIS maps are designed to consume

More information

Collaborate. w/ ArcGIS Runtime SDK for Android

Collaborate. w/ ArcGIS Runtime SDK for Android Collaborate w/ ArcGIS Runtime SDK for Android Presenters Dan O Neill - @doneill https://github.com/doneill Shelly Gill - @shellygill https://github.com/shellygill Introduction to Esri Open Source Collaboration

More information

Administering Your ArcGIS Enterprise Portal Bill Major Craig Cleveland

Administering Your ArcGIS Enterprise Portal Bill Major Craig Cleveland Administering Your ArcGIS Enterprise Portal Bill Major Craig Cleveland Agenda Welcome & Introduction to ArcGIS Enterprise Portal for ArcGIS Administration - Basic Configuration - Advanced Configuration

More information

Developing Mobile Apps with the ArcGIS Runtime SDK for.net

Developing Mobile Apps with the ArcGIS Runtime SDK for.net Developing Mobile Apps with the ArcGIS Runtime SDK for.net Rich Zwaap Morten Nielsen Esri UC 2014 Technical Workshop Agenda The ArcGIS Runtime Getting started with.net Mapping Editing Going offline Geocoding

More information

ArcGIS Apps for the Mobile Worker. Presented by: Sue Enyedy-Goldner

ArcGIS Apps for the Mobile Worker. Presented by: Sue Enyedy-Goldner ArcGIS Apps for the Mobile Worker Presented by: Sue Enyedy-Goldner Agenda 1. Overview of ArcGIS apps for mobile workflows 2. Considerations for configuring the best app for your workflow 3. Configuration

More information

ArcGIS Runtime: Building 3D Apps. Rex Hansen Adrien Meriaux

ArcGIS Runtime: Building 3D Apps. Rex Hansen Adrien Meriaux ArcGIS Runtime: Building 3D Apps Rex Hansen Adrien Meriaux Agenda 3D across the ArcGIS Platform 3D in ArcGIS Runtime Road ahead ArcGIS 3D helps customers Create and Manage Design and Simulate Visualize

More information

Building WPF Apps with the new ArcGIS Runtime SDK for.net. Antti Kajanus Mike Branscomb

Building WPF Apps with the new ArcGIS Runtime SDK for.net. Antti Kajanus Mike Branscomb Building WPF Apps with the new ArcGIS Runtime SDK for.net Antti Kajanus Mike Branscomb Agenda ArcGIS Runtime SDK for.net Windows Desktop API Build a map Edit Search Geocoding and Routing Perform analysis

More information

Introducing Survey123 For ArcGIS

Introducing Survey123 For ArcGIS FedGIS Conference February 24 25, 2016 Washington, DC Introducing Survey123 For ArcGIS James Tedrick, Esri Jawameer Kakakhan, UN OCHA Configurable Solutions That Work Together Vizualize Collect Navigator

More information

ArcGIS Apps for the Mobile Worker. Presented by: Sue Enyedy-Goldner

ArcGIS Apps for the Mobile Worker. Presented by: Sue Enyedy-Goldner ArcGIS Apps for the Mobile Worker Presented by: Sue Enyedy-Goldner Agenda 1. Overview of ArcGIS apps for mobile workflows 2. Considerations for configuring the best app for your workflow 3. Configuration

More information

ArcGIS Runtime: Building Cross-Platform Apps. Mike Branscomb Michael Tims Tyler Schiewe

ArcGIS Runtime: Building Cross-Platform Apps. Mike Branscomb Michael Tims Tyler Schiewe ArcGIS Runtime: Building Cross-Platform Apps Mike Branscomb Michael Tims Tyler Schiewe Agenda Cross-platform review ArcGIS Runtime cross-platform options - Java - Qt -.NET Native vs Web Native strategies

More information

Enabling High-Quality Printing in Web Applications. Tanu Hoque & Jeff Moulds

Enabling High-Quality Printing in Web Applications. Tanu Hoque & Jeff Moulds Enabling High-Quality Printing in Web Applications Tanu Hoque & Jeff Moulds Print Service Technical Session Outline What s new in 10.6x What is Print Service Out of the box print solutions Print service

More information

ArcGIS Apps for the Mobile Worker. Presented by: Sue Enyedy-Goldner

ArcGIS Apps for the Mobile Worker. Presented by: Sue Enyedy-Goldner ArcGIS Apps for the Mobile Worker Presented by: Sue Enyedy-Goldner Agenda 1. Overview of ArcGIS apps for mobile workflows 2. Considerations for configuring the best app for your workflow 3. Configuration

More information

ArcGIS Viewer for Silverlight Advanced Topics

ArcGIS Viewer for Silverlight Advanced Topics Esri International User Conference San Diego, California Technical Workshops July 26, 2012 ArcGIS Viewer for Silverlight Advanced Topics Rich Zwaap Agenda Add-ins overview Tools Behaviors Controls Layouts

More information

Automation with Meraki Provisioning API

Automation with Meraki Provisioning API DEVNET-2120 Automation with Meraki Provisioning API Courtney M. Batiste, Solutions Architect- Cisco Meraki Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1.

More information

Essentials of Developing Windows Store Apps Using C#

Essentials of Developing Windows Store Apps Using C# Essentials of Developing Windows Store Apps Using C# Course 20484A; 5 Days, Instructor-led Course Description In this course, students will learn essential programming skills and techniques that are required

More information

ArcGIS App Strategies Ben

ArcGIS App Strategies Ben ArcGIS App Strategies Ben Ramseth Bramseth@esri.com @esrimapninja DevSummit DC February 26, 2016 Washington, DC Session overview Topics Understanding ArcGIS s Defining strategies for building s Applying

More information

ArcGIS Enterprise Security: An Introduction. Gregory Ponto & Jeff Smith

ArcGIS Enterprise Security: An Introduction. Gregory Ponto & Jeff Smith ArcGIS Enterprise Security: An Introduction Gregory Ponto & Jeff Smith Agenda ArcGIS Enterprise Security Model Portal for ArcGIS Authentication Authorization Building the Enterprise Encryption Collaboration

More information

Developing Qt Apps with the Runtime SDK

Developing Qt Apps with the Runtime SDK Developing Qt Apps with the Runtime SDK Thomas Dunn and Michael Tims Esri UC 2014 Technical Workshop Agenda Getting Started Creating the Map Geocoding and Routing Geoprocessing Message Processing Work

More information

Developing Add-Ins for ArcGIS Pro (.NET) Toronto Esri Canada UC Presented by: Gandhar Wazalwar & Kern Ranjitsingh October 11, 2018

Developing Add-Ins for ArcGIS Pro (.NET) Toronto Esri Canada UC Presented by: Gandhar Wazalwar & Kern Ranjitsingh October 11, 2018 Developing Add-Ins for ArcGIS Pro (.NET) Toronto Esri Canada UC Presented by: Gandhar Wazalwar & Kern Ranjitsingh October 11, 2018 Esri Canada Professional Services Project services Implementation services

More information

Introduction to Web AppBuilder for ArcGIS: JavaScript Apps Made Easy

Introduction to Web AppBuilder for ArcGIS: JavaScript Apps Made Easy Introduction to Web AppBuilder for ArcGIS: JavaScript Apps Made Easy Jianxia Song & Derek Law July 21, 2015 Agenda Product overview Web AppBuilder for ArcGIS tour What s New July 2015 ArcGIS Online update

More information

Developing ios & Mac apps with ArcGIS Runtime SDK. Suganya Baskaran, Divesh Goyal

Developing ios & Mac apps with ArcGIS Runtime SDK. Suganya Baskaran, Divesh Goyal Developing ios & Mac apps with ArcGIS Runtime SDK Suganya Baskaran, Divesh Goyal Topics Overview of Runtime Quick intro to SDK Common functionality & patterns - Displaying map content - Searching for content

More information

Getting Started with the Smartphone and Tablet ArcGIS Runtime SDKs. David Martinez, Kris Bezdecny, Andy Gup, David Cardella

Getting Started with the Smartphone and Tablet ArcGIS Runtime SDKs. David Martinez, Kris Bezdecny, Andy Gup, David Cardella Getting Started with the Smartphone and Tablet ArcGIS Runtime SDKs David Martinez, Kris Bezdecny, Andy Gup, David Cardella Agenda Intro - Trends - Overview ArcGIS for - ios - Windows Phone - Android Wrap

More information

Getting Started ArcGIS Runtime SDK for Android. Andy

Getting Started ArcGIS Runtime SDK for Android. Andy Getting Started ArcGIS Runtime SDK for Android Andy Gup @agup Agenda Introduction Runtime SDK - Tools and features Maps & Layers Tasks Editing GPS Offline Capabilities Summary My contact info Andy Gup,

More information

Fen Wetland Toolkit. Mobile Application User Guide Version 1.0. September 27, Contact:

Fen Wetland Toolkit. Mobile Application User Guide Version 1.0. September 27, Contact: Fen Wetland Toolkit Mobile Application User Guide Version 1.0 September 27, 2016 Contact: fenapp@hdrinc.com Fen Wetland Toolkit HDR Data Collection Web-App Table of Contents Background... 2 Installation

More information

Running the ESPM Twitter Integration sample app on SAP Cloud Platform

Running the ESPM Twitter Integration sample app on SAP Cloud Platform Running the ESPM Twitter Integration sample app on SAP Cloud Platform By Daniel Gomes da Silva Learn how to download, build, deploy, configure and run the ESPM Twitter Integration JAVA sample app on SAP

More information

No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS

No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS No Programming Required Create web apps rapidly with Web AppBuilder for ArcGIS By Derek Law, Esri Product Manager, ArcGIS for Server Do you want to build web mapping applications you can run on desktop,

More information

Copyright

Copyright Copyright NataliaS@portnov.com 1 EMULATORS vs Real Devices USER EXPERIENCE AND USABILITY User Interactions Real occurring events Overall performance Consistency in results SPECTRUM OF DEVICE CONFIGURATIONS

More information

Leveraging the Globus Platform in your Web Applications. GlobusWorld April 26, 2018 Greg Nawrocki

Leveraging the Globus Platform in your Web Applications. GlobusWorld April 26, 2018 Greg Nawrocki Leveraging the Globus Platform in your Web Applications GlobusWorld April 26, 2018 Greg Nawrocki greg@globus.org Topics and Goals Platform Overview Why expose the APIs A quick touch of the Globus Auth

More information

TRAINING GUIDE. Tablet Cradle to Mobile GIS

TRAINING GUIDE. Tablet Cradle to Mobile GIS TRAINING GUIDE Tablet Cradle to Mobile GIS Tablet Cradle to Mobile One of the critical components of mobile is the GIS piece, and also can be the most complex. The mobile GIS maps are designed to consume

More information

Esri Developer Summit in Europe Building Applications with ArcGIS Runtime SDK for Java

Esri Developer Summit in Europe Building Applications with ArcGIS Runtime SDK for Java Esri Developer Summit in Europe Building Applications with ArcGIS Runtime SDK for Java Mark Baird Mike Branscomb Agenda Introduction SDK Building the Map Editing Querying Data Geoprocessing Asynchronous

More information

Collector for ArcGIS Preparing for and Working in a disconnected environment

Collector for ArcGIS Preparing for and Working in a disconnected environment Collector for ArcGIS Preparing for and Working in a disconnected environment Peter Nasuti, Dan Moore, Nicholas Davis Topics Covered With demonstrations throughout each step 1) What is Collector? What can

More information

Implementing Security for ArcGIS Server Java Solutions

Implementing Security for ArcGIS Server Java Solutions Implementing Security for ArcGIS Server Java Solutions Shreyas Shinde Jay Theodore ESRI Developer Summit 2008 1 Schedule 75 minute session 60 65 minute lecture 10 15 minutes Q & A following the lecture

More information

Introduction To Android

Introduction To Android Introduction To Android Mobile Technologies Symbian OS ios BlackBerry OS Windows Android Introduction to Android Android is an operating system for mobile devices such as smart phones and tablet computers.

More information

Building Desktop Applications with Java. Eric Bader Vishal Agarwal

Building Desktop Applications with Java. Eric Bader Vishal Agarwal Building Desktop Applications with Java Eric Bader Vishal Agarwal Introductions Who are we? Core Engine Java dev team members. Who are you? ArcGIS Desktop developers/users? MapObjects Java users? Current

More information

Building Mobile Apps with the ArcGIS API for JavaScript. Andy Gup, Lloyd Heberlie, Thomas Other

Building Mobile Apps with the ArcGIS API for JavaScript. Andy Gup, Lloyd Heberlie, Thomas Other Building Mobile Apps with the ArcGIS API for JavaScript Andy Gup, Lloyd Heberlie, Thomas Other Agenda Capabilities Managing app life-cycle Working with locally hosted builds Working from JS frameworks

More information

Produced by. Mobile Application Development. David Drohan Department of Computing & Mathematics Waterford Institute of Technology

Produced by. Mobile Application Development. David Drohan Department of Computing & Mathematics Waterford Institute of Technology Mobile Application Development Produced by David Drohan (ddrohan@wit.ie) Department of Computing & Mathematics Waterford Institute of Technology http://www.wit.ie Android Google Services" Part 1 Google+

More information

Hello World. Lesson 1. Create your first Android. Android Developer Fundamentals. Android Developer Fundamentals

Hello World. Lesson 1. Create your first Android. Android Developer Fundamentals. Android Developer Fundamentals Hello World Lesson 1 1 1.1 Create Your First Android App 2 Contents Android Studio Creating "Hello World" app in Android Studio Basic app development workflow with Android Studio Running apps on virtual

More information

Developing Web Applications with Geocoding and Routing Services Using ArcGIS Online. Deelesh Mandloi Dmitry Kudinov Brad Niemand

Developing Web Applications with Geocoding and Routing Services Using ArcGIS Online. Deelesh Mandloi Dmitry Kudinov Brad Niemand Developing Web Applications with Geocoding and Routing Services Using ArcGIS Online Deelesh Mandloi Dmitry Kudinov Brad Niemand Metadata Slides will be available at http://proceedings.esri.com Documentation

More information

ArcGIS Online: Three-and-a-Half Ways to Create Tile Layers. Eric Anderson & Adam Eversole Esri Support Services

ArcGIS Online: Three-and-a-Half Ways to Create Tile Layers. Eric Anderson & Adam Eversole Esri Support Services ArcGIS Online: Three-and-a-Half Ways to Create Tile Layers Eric Anderson & Adam Eversole Esri Support Services Agenda 1. Introduction 2. What is a tile layer 3. How a tile layer works 4. The 3 ½ ways to

More information

ArcGIS Online A Security, Privacy, and Compliance Overview. Andrea Rosso Michael Young

ArcGIS Online A Security, Privacy, and Compliance Overview. Andrea Rosso Michael Young ArcGIS Online A Security, Privacy, and Compliance Overview Andrea Rosso Michael Young ArcGIS Online A Multi-Tenant System Portal Portal Portal ArcGIS Online Agenda Online Platform Security Deployment Architecture

More information

Portal for ArcGIS. Matthias Schenker, Esri Switzerland

Portal for ArcGIS. Matthias Schenker, Esri Switzerland Portal for ArcGIS Matthias Schenker, Esri Switzerland Empower people to use and create maps More apps Operations Dashboard for ArcGIS Collector for ArcGIS Maps everywhere Organize your maps and apps enable

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/...

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/... PROCE55 Mobile: Web API App PROCE55 Mobile with Test Web API App Web API App Example This example shows how to access a typical Web API using your mobile phone via Internet. The returned data is in JSON

More information

Android Sdk Install Documentation Eclipse. Ubuntu >>>CLICK HERE<<<

Android Sdk Install Documentation Eclipse. Ubuntu >>>CLICK HERE<<< Android Sdk Install Documentation Eclipse Ubuntu 12.04 These are instructions to install the Android SDK onto Ubuntu. If you are only I'm skipping the Eclipse install, sorry if you wanted. Just trying

More information

Essentials of Developing Windows Store Apps Using HTML5 and JavaScript

Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Course 20481A; 5 Days, Instructor-led Course Description In this course, students will learn essential programming skills and techniques

More information

Getting Started with ArcGIS Runtime SDK for Qt. Thomas Dunn & Nandini Rao

Getting Started with ArcGIS Runtime SDK for Qt. Thomas Dunn & Nandini Rao Getting Started with ArcGIS Runtime SDK for Qt Thomas Dunn & Nandini Rao Agenda Getting Started Creating the Map Geocoding and Routing Geoprocessing Message Processing Work Offline The Next Release ArcGIS

More information

DEVELOPING APPS FOR. Note: This ebook relies on and uses information from the Google Glass Developers site.

DEVELOPING APPS FOR. Note: This ebook relies on and uses information from the Google Glass Developers site. DEVELOPING APPS FOR Note: This ebook relies on and uses information from the Google Glass Developers site. Table of Contents GLASS What is Google Glass? 3 Technology Basics.... 3 Design for Google Glass

More information

Getting Started with ArcGIS Runtime SDK for ios. Nick Furness / Al Pascual

Getting Started with ArcGIS Runtime SDK for ios. Nick Furness / Al Pascual Getting Started with ArcGIS Runtime SDK for ios Nick Furness / Al Pascual ArcGIS Runtime Family of SDKs for multiple platforms - Consistent capabilities Native to the platform - For building great apps

More information

Mobile Application Development

Mobile Application Development Android Native Application Development Mobile Application Development 1. Android Framework and Android Studio b. Android Software Layers c. Android Libraries d. Components of an Android Application e.

More information

User Interfaces for Web Sites and Mobile Devices. System and Networks

User Interfaces for Web Sites and Mobile Devices. System and Networks User Interfaces for Web Sites and Mobile Devices System and Networks Computer Systems and Networks: Device-Aware Interfaces Interfaces must take into account physical constraints of computers and networks:

More information

TRAINING GUIDE. ArcGIS Online and Lucity

TRAINING GUIDE. ArcGIS Online and Lucity TRAINING GUIDE ArcGIS Online and Lucity ArcGIS Online and Lucity This covers some basic functionality we feel you will need to be successful with Lucity with ArcGIS Online or Portal for ArcGIS Enterprise.

More information

What is Android? Android is an open-source operating system (OS) used in smart devices

What is Android? Android is an open-source operating system (OS) used in smart devices Phones and Tablets What is Android? Android is an open-source operating system (OS) used in smart devices Developed by Google (2005) Phones Tablets Smart TVs Watches Cars Cameras and much more... Originally

More information

MAPS.ME. User Guide.

MAPS.ME. User Guide. MAPS.ME User Guide support@maps.me Main screen geolocation menu bar search bookmarks How do I download a map? Zoom in until «Download Map» appears Find a map in the list of the countries (Menu-Download

More information

Google Maps Troubleshooting

Google Maps Troubleshooting Google Maps Troubleshooting Before you go through the troubleshooting guide below, make sure that you ve consulted the class FAQ, Google s Map Activity Tutorial, as well as these helpful resources from

More information

Getting Started with the ArcGIS API for JavaScript. Julie Powell, Paul Hann

Getting Started with the ArcGIS API for JavaScript. Julie Powell, Paul Hann Getting Started with the ArcGIS API for JavaScript Julie Powell, Paul Hann Esri Developer Summit Berlin November 19 2012 Getting Started with the ArcGIS API for JavaScript ArcGIS for Server Is a Platform

More information

A Developers Guide To Mobile GIS. David Cardella, Jeff Shaner

A Developers Guide To Mobile GIS. David Cardella, Jeff Shaner A Developers Guide To Mobile GIS David Cardella, Jeff Shaner What is mobile GIS? Extends the reach of ArcGIS from the office to the field With a mobile GIS solution you can: - Carry your maps to the field

More information

ArcGIS Online: Developing Web Applications with Geocoding and Routing Services. Deelesh Mandloi Dmitry Kudinov Brad Niemand

ArcGIS Online: Developing Web Applications with Geocoding and Routing Services. Deelesh Mandloi Dmitry Kudinov Brad Niemand ArcGIS Online: Developing Web Applications with Geocoding and Routing Services Deelesh Mandloi Dmitry Kudinov Brad Niemand Metadata Slides available at http://esriurl.com/ds15gr Slides and video recording

More information

System Design and Tuning

System Design and Tuning System Design and Tuning Lucity 2018 R2 Overview Lucity Specifications 2018 R2 Web Identity Server Document Server File Server Database Server Service Server Citizen Portal Mobile Server Android Devices

More information

Collector for ArcGIS

Collector for ArcGIS Collector for ArcGIS Field GIS Taking GIS Beyond the Office Collecting Data Reporting Observations Managing Work Connecting the Field with the Enterprise Field Mobility Solutions Improve accuracy and currency

More information

ArcGIS API for JavaScript: Getting Started Andy René

ArcGIS API for JavaScript: Getting Started Andy René ArcGIS API for JavaScript: Getting Started Andy Gup @agup René Rubalcava @odoenet Agenda Introduction to the ArcGIS API 4.x for JavaScript Fundamentals and Patterns Platform Integration Visualizations

More information