Lab 7: Silverlight API

Size: px
Start display at page:

Download "Lab 7: Silverlight API"

Transcription

1 Lab 7: Silverlight API Due Date: 02/07/2014 Overview Microsoft Silverlight is a development platform for creating engaging, interactive user experiences for Web, desktop, and mobile applications when online or offline. It is compatible with multiple web browsers used on Microsoft Windows and Mac OS X. Silverlight applications have features and purposes similar to those of Adobe Flash. The ArcGIS API for Microsoft Silverlight allows users to integrate ArcGIS Server, ESRI MapIt, and Bing Maps services and capabilities in a Silverlight application. You can create RIAs that utilize the powerful mapping, geocoding, and geoprocessing capabilities provided by ArcGIS Server. This lab assignment is designed to help you become familiar with different options for developing Web GIS applications based on Silverlight. Specifically, this assignment is divided into three parts: Part I: ArcGIS API for Silverlight Part II: ArcGIS Viewer for Silverlight Part I: ArcGIS API for Silverlight With ArcGIS API for Silverlight, you can integrate interactive maps and tasks in the web applications. To learn more details, check out this link - To develop a Silverlight application, there are a few software need to be installed first. 1. Visual Studio or Visual Web Developer 2013 Express You can get the trial version that can be used for free for 90 days. Or, you can get a free copy of Visual Studio (Professional version) as a student from here ( MSS_DSV_DS_HP1216_Hero) using your UMD as verification. 2. ArcGIS API for Microsoft Silverlight Download V3.2 from this page - The downloading and installation process may take a lot of time to complete. You should install the software in specific sequence (see above) to avoid any potential issues. 1

2 The general steps of creating a web application using the ArcGIS API for Silverlight: 1. Install the prerequisite Microsoft software packages. 2. Install ArcGIS API for Silverlight. 3. In Visual Studio or Web Developer Express, create a Silverlight application project 4. Add a reference to one or more of the ArcGIS API for Silverlight assemblies in your Silverlight application project. 5. In the Silverlight application, open a Silverlight user control in XAML view and add code to access and display an ArcGIS Server map service. There are many samples (examples) that are available for you to use and modify the codes from this Web site: 6. Compile the code and run your application. 7. Deploy the project to a web server Here below is an example to illustrate the steps and also share some tips and tricks when creating the ArcGIS API for Silverlight application. emo1testpage.html 2

3 Now, suppose that you have already installed Visual Studio and also ArcGIS API for Silverlight. Start Visual Studio or Visual Web Developer Express. (I use the latter for demonstrations here.) Create a new project. (We can choose the installed template Visual C#.) If you are creating a new Silverlight application, in the New Silverlight Application dialog box, choose Host the Silverlight application in a new website with and a New Web project type setting of ASP.NET Web Application Project. By default, the MainPage.xaml file should be displayed. 3

4 Now, add a reference to one or more of the ArcGIS Silverlight API assemblies in your Silverlight application project. Open Solution Explorer and locate the Silverlight application project. Right click on the References node and select "Add Reference...". Under the tab Assemblies > Extensions, you will check the small box in front of the ESRI.ArcGIS.Client assembly. (See the screen shot below) 4

5 In your Silverlight application, open a Silverlight User Control in XAML view (i.e. MainPage.xaml). Copy and paste the code from the sample page. The simplest example is this one - You can copy/paste the XAML code (below) from this web site and then replace the code in the MainPage.xaml file. <UserControl x:class="arcgissilverlightsdk.map" xmlns=" xmlns:x=" xmlns:esri=" <Grid x:name="layoutroot" > <esri:map WrapAround="True" x:name="mymap"> <esri:arcgistiledmapservicelayer ID="MyLayer" Url=" /> </esri:map> </Grid> </UserControl> Then, I did a few customizations: I changed the project name in the first line of XAML (UserControl x:class=" ") to the name of your project. In this case, the project name is Silverlight_Demo1. Obviously, your project name will be different depending on how you named your own project. Make sure that you add.mainpage after the project name. (see the screenshot below) I also used my own map service to replace the one in the sample code. o Make sure that the map service type (dynamic or tiled) matches the code. 5

6 Save the project. In this case, you doon t need to customize the.xaml.cc file. Compile the code and run your application by clicking on the debug button or from the menu Debug Start Debugging. 6

7 Your Silverlight application should be hosted in an html or aspx page on a Web server and accessed in a browser. The Visual Studio's internal Web Development Server will work. So, if there is no error, the application will be displayed in a web browser as below. Note: Every time you need to make new changes to the code, you must stop the debugging first. This is a rather simple application. Now, we can add more tools or features to make it more sophisticated. There are many samples to borrow and customize - For example, we can try this sample - This control provides a way to see what's underneath a layer. It can be used as a good comparison tool. To implement this feature on a map layer, coding in C# is needed, because, just like ASP, Silverlight is not about function. Instead, it is about presentation. First, I copied/pasted the XAML code to replace that of my project file. Then, I made necessary changes (highlighted in yellow). 7

8 <UserControl x:class="silverlight_demo1.mainpage" xmlns=" xmlns:x=" xmlns:esri=" <Grid x:name="layoutroot" Background="White"> <esri:map x:name="belowmap" Visibility="Collapsed" WrapAround="True" > <esri:arcgistiledmapservicelayer Url=" </esri:map> <esri:map x:name="abovemap" WrapAround="True" ExtentChanging="AboveMap_ExtentChanging"> <esri:arcgistiledmapservicelayer Url=" </esri:map> <Canvas x:name="rootcanvas" SizeChanged="canvas_SizeChanged"> <Rectangle x:name="slider" MouseLeftButtonDown="Handle_MouseDown" MouseMove="Handle_MouseMove" MouseLeftButtonUp="Handle_MouseUp" Width="5" Fill="Red"/> </Canvas> <Border BorderBrush="Black" VerticalAlignment="Top" BorderThickness="1" Margin="15" Background="White" HorizontalAlignment="Right"> <TextBlock TextAlignment="Center" Text="Mouse down on red rectangle and drag to swipe" Height="16" Margin="15,5,15,5" /> </Border> </Grid> </UserControl> Now, it s necessary to customize the C# file MainPage.xaml.cs which can be opened by double-clicking on its name in Solution Explorer Panel on the right. (This is because I created this project using the C# template.) I copied/pasted the Code Behind C# from the sample to replace the code in MainPage.xaml.cs of my project. Then, I customized the code. The specific changes to the code can be seen below (highlighted in yellow). using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using System.Windows.Shapes; using ESRI.ArcGIS.Client; 8

9 namespace Silverlight_Demo1 { public partial class MainPage : UserControl { bool ismousecaptured; double mousehorizontalposition; public MainPage() { InitializeComponent(); The rest of the code remain unchanged from the original sample code. Debug and Run the application. Now that I have created this project, I would like to publish it to a web server. The procedures are very simple: 1. Use WinSCP to connect to the Terpconnect server 2. Create a folder on the server (For example, Silverlight\API_Demo in my case) 3. On your local computer, navigate to the Silverlight project folder In my case, all the files for this specific project are saved under this folder - C:\WorkSpace\Geog677\W2013\Demos\Silverlight\Silverlight_Demo1 4. Further navigate to the sub-folder \Silverlight_Demo1\Bin\Debug 5. Transfer the following two files from this subfolder to the folder on Terpconnect. Silverlight_Demo1.xap Silverlight_Demo1TestPage.html The file names will be different in your case depending on how you named your project. The bottom line is that you just need to upload the XAP and HTML files to the server. The URL of my Silverlight web application is - emo1testpage.html 9

10 Your tasks: You need to create a Web GIS application using ArcGIS API 3.0 for Silverlight by practicing those steps described earlier. You can use the example above as a reference even though your own application will be different You are encouraged but not required to try other tools/features from the samples. Be creative! 10

11 Part II: ArcGIS Viewer for Silverlight The ArcGIS Viewer for Silverlight is a ready-to-deploy configurable client application built with the ArcGIS API for Silverlight. Essentially it is a template for ArcGIS API for Silverlight. It allows users to quickly create rich web mapping applications using a fully interactive configuration experience. The idea to reduce as much programming as possible so that users can develop great Silverlight applications without involving much coding. It is designed so users can configure and deploy a web mapping application n easily and quickly. The latest version is 3.2 released December To learn more about the concepts of ArcGIS Viewer for Silverlight, check out this Web page - The first step is to download ArcGIS Viewer for Silverlight 3.2: Before installing the ArcGIS Viewer for Silverlight on Windows 7, you must enable the Windows features as shown below. For more information about Turn Windows features on or off, you can refer to this web page - Windows-features-on-or-off 11

12 The use of ArcGIS Viewer for Silverlight is very straight forward because it is GUI driven and the steps are easy to follow. Refer to this Web page v000000/ Once you have installed the ArcGIS Viewer for Silverlight, open the Application Builder as follows: 1. Click the Start menu > All Programs > ArcGIS > ArcGIS Viewer for Silverlight 3.2. This opens the Application Builder component of ArcGIS Viewer for Silverlight in your default browser. 2. In the browser window, click Create New Application. 3. To create your Viewer application, you must first choose a map. You can create a New Map, which includes a configurable basemap and options for adding layers, or you can create a map based on an existing Web Map from ArcGIS Online. 12

13 The rest steps are straightforward and similar to those of ArcGIS Viewer for Flex that you practiced in Lab 6. Therefore, I will not go into details. You will need to customize the following: Title Logo Basemap Operational layers Tools Links Once you have configured your Viewer application by selecting a basemap and adding layers, click the Deploy button in the upper right corner of the Application Builder. Then specify a name for the application on the dialog that appears and click OK. The Viewer application deploys to the location specified during the installation process, for example, c:\inetpub\wwwroot\apps. The new Viewer application automatically opens in a new browser window. To make additional changes, return to the Application Builder window in which you were previously working. After deploying the map for the first time, the Deploy button changes to a Save button. Click Save as necessary while updating your application configuration. Click Save As to create a new version of the Viewer application. Now, you can publish the project to a web browser such as Terpconnect. 13

14 You need to upload the whole folder of the project to the server. In my case, all the files of this demo project are saved under the folder C:\inetpub\wwwroot\Apps\Demo Jan \ After I uploading the files to Terpconnect server, I can access the Silverlight web application through a URL - Your tasks: You need to create a Web GIS application using ArcGIS Viewer for Silverlight 3.2. You must use an operational layer from your own map services. You must have at least four tools in your web application. (Make sure everything works.) Deploy your application on Terpconnect server. In the lab report, write the URL with a brief description of the map layers, and features/tools. Also screen shots of your Web GIS applications (both Part I and II). Be creative! THE END

ArcGIS API for Silverlight An Introduction

ArcGIS API for Silverlight An Introduction Esri Middle East and Africa User Conference December 10 12 Abu Dhabi, UAE ArcGIS API for Silverlight An Introduction Jo Fraley Agenda Silverlight platform API Overview Building Apps Road Ahead ArcGIS is

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 4 Media, Ink, & Deep Zoom

CS3240 Human-Computer Interaction Lab Sheet Lab Session 4 Media, Ink, & Deep Zoom CS3240 Human-Computer Interaction Lab Sheet Lab Session 4 Media, Ink, & Deep Zoom CS3240 Lab SEM 1 2009/2010 Page 1 Overview In this lab, you will get familiarized with interactive media elements such

More information

sharpcorner.com/uploadfile/37db1d/4958/default.aspx?articleid=cb0b291c-52ae-4b80-a95c- 438d76fa1145

sharpcorner.com/uploadfile/37db1d/4958/default.aspx?articleid=cb0b291c-52ae-4b80-a95c- 438d76fa1145 Navigation in Silverlight -3 1. Introduction: In previous article we learn to navigate to another Silverlight page without using navigation framework, which is new feature in Silverlight 3. Read it Here:

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration

CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration Page 1 Overview In this lab, users will get themselves familarise with fact that Expression Blend uses the identical

More information

ImageNow Interact for Esri ArcGIS Server for Silverlight Getting Started Guide

ImageNow Interact for Esri ArcGIS Server for Silverlight Getting Started Guide ImageNow Interact for Esri ArcGIS Server for Silverlight Getting Started Guide Esri Silverlight Viewer Tools ImageNow Version: 6.6.x Written by: Product Documentation, R&D Date: January 2013 ImageNow and

More information

RadPDFViewer For Silverlight and WPF

RadPDFViewer For Silverlight and WPF RadPDFViewer For Silverlight and WPF This tutorial will introduce the RadPDFViewer control, part of the Telerik suite of XAML controls Setting Up The Project To begin, open Visual Studio and click on the

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

CS3240 Human-Computer Interaction

CS3240 Human-Computer Interaction CS3240 Human-Computer Interaction Lab Session 3 Supplement Creating a Picture Viewer Silverlight Application Page 1 Introduction This supplementary document is provided as a reference that showcases an

More information

Web Mapping Applications with ArcGIS. Bernie Szukalski Derek Law

Web Mapping Applications with ArcGIS. Bernie Szukalski Derek Law Web Mapping Applications with ArcGIS Bernie Szukalski Derek Law Agenda Web Mapping and Map Services Fundamentals ArcGIS Web Mapping Applications - Hosted online - Hosted on-premise Summary Web Application

More information

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C5: The Complete Code of PathAnimation. Copyright by V. Miszalok, last update:

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C5: The Complete Code of PathAnimation. Copyright by V. Miszalok, last update: 1 Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C5: The Complete Code of PathAnimation Preliminaries Page.XAML Page.xaml.cs Copyright by V. Miszalok, last update: 30-01-2009 Install 1) Visual

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

Author. Publish. Use

Author. Publish. Use Building Mashups Using the ArcGIS Web APIs Heather Gonzago Garima Vyas Agenda g Overview: Web Maps Overview: ArcGIS API for REST ArcGIS API for JavaScript p Google Maps Extension Bing Maps Extension ArcGIS

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

ArcGIS Viewer for Microsoft Silverlight An Introduction

ArcGIS Viewer for Microsoft Silverlight An Introduction Esri International User Conference San Diego, CA Technical Workshops July 12, 2011 ArcGIS Viewer for Microsoft Silverlight An Introduction Art Haddad, Rich Zwaap, and Derek Law Agenda Background Product

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

Fundamentals of XAML and Microsoft Expression Blend

Fundamentals of XAML and Microsoft Expression Blend 10553A - Version: 1 22 April 2018 Fundamentals of XAML and Microsoft Expression Blend Fundamentals of XAML and Microsoft Expression Blend 10553A - Version: 1 3 days Course Description: This 3-day course

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework

CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework CS3240 Lab SEM 1 2009/2010 Page 1 Overview In this lab, students will familiarize themselves with creating and get to learn

More information

Working with the ArcGIS Viewer for Flex Application Builder

Working with the ArcGIS Viewer for Flex Application Builder Working with the ArcGIS Viewer for Flex Application Builder Esri Canada User Conference St. John s November 15, 2012 Presented By: Greg Yetman gyetman@esri.ca Agenda This seminar is designed to help you

More information

An Introduction to GIS for developers

An Introduction to GIS for developers An Introduction to GIS for developers Part 4: GIS Sharing Canserina Kurnia & Tom Shippee Agenda Web GIS ArcGIS Online Cloud-based ArcGIS Server ArcGIS Server on-premises ArcGIS a complete platform discover,

More information

NE Fundamentals of XAML and Microsoft Expression Blend

NE Fundamentals of XAML and Microsoft Expression Blend NE-10553 Fundamentals of XAML and Microsoft Expression Blend Summary Duration 3 Days Audience Developers Level 200 Technology Microsoft Expression Blend Delivery Method Instructor-led (Classroom) Training

More information

Hands-On Lab. Hello Windows Phone

Hands-On Lab. Hello Windows Phone Hands-On Lab Hello Windows Phone Lab version: 1.1.0 Last updated: 12/8/2010 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING WINDOWS PHONE APPLICATIONS WITH MICROSOFT VISUAL STUDIO 2010 EXPRESS FOR WINDOWS

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 2

CS3240 Human-Computer Interaction Lab Sheet Lab Session 2 CS3240 Human-Computer Interaction Lab Sheet Lab Session 2 Key Features of Silverlight Page 1 Overview In this lab, you will get familiarized with the key features of Silverlight, such as layout containers,

More information

Interactive webmaps with ArcGIS. Kristel Meikas, AlphaGIS

Interactive webmaps with ArcGIS. Kristel Meikas, AlphaGIS Interactive webmaps with ArcGIS Kristel Meikas, AlphaGIS Agenda Overview of ArcGIS tools and resources Introduction to ArcGIS APIs In depth with Flex maps In depth with JavaScript maps ArcGIS Server Publish

More information

[MS10553]: Fundamentals of XAML and Microsoft Expression Blend

[MS10553]: Fundamentals of XAML and Microsoft Expression Blend [MS10553]: Fundamentals of XAML and Microsoft Expression Blend Length : 3 Days Audience(s) : Developers Level : 200 Technology : Microsoft Expression Blend Delivery Method : Instructor-led (classroom)

More information

Using Flex 3 in a Flex 4 World *

Using Flex 3 in a Flex 4 World * OpenStax-CNX module: m34631 1 Using Flex 3 in a Flex 4 World * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Learn how

More information

CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS

CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS Full Text Version of the Video Series Published April, 2014 Bob Tabor http://www.learnvisualstudio.net Contents Introduction... 2 Lesson

More information

ArcGIS for Mobile An Introduction. Bonnie Stayer

ArcGIS for Mobile An Introduction. Bonnie Stayer ArcGIS for Mobile An Introduction Bonnie Stayer Benefits of mobile GIS? Accessibility Timely Decisionmaking Efficiency and Accuracy Rapid Data Collection Types of mobile solutions? Apps & APIs Functionality

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

EUCOM/AFRICOM DEFENSE USER GROUP MEETING MARCH 2010 STUTTGART WELCOME!

EUCOM/AFRICOM DEFENSE USER GROUP MEETING MARCH 2010 STUTTGART WELCOME! EUCOM/AFRICOM DEFENSE USER GROUP MEETING 23-25 MARCH 2010 STUTTGART WELCOME! AGENDA March 23, Tuesday 0800-0900 Registration 0900-0915 Welcome and Introductions 0915-1000 Getting Started with ArcGIS Server

More information

INTERNET GIS. Course Overview. Schedule. Instructor. Lab Instructor. Prerequisites. Urban Planning 794 Monday s 5:30-8:10pm SARUP 158

INTERNET GIS. Course Overview. Schedule. Instructor. Lab Instructor. Prerequisites. Urban Planning 794 Monday s 5:30-8:10pm SARUP 158 INTERNET GIS Urban Planning 794 Monday s 5:30-8:10pm SARUP 158 Schedule Class/Lab - Mondays 5:30pm - 8:10pm Office Hours - By Appointment Mid-Term - 11/9/2015 Final - 12/14/2015 12/21/2015 Instructor Paul

More information

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Contents Create your First Test... 3 Standalone Web Test... 3 Standalone WPF Test... 6 Standalone Silverlight Test... 8 Visual Studio Plug-In

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

Portable Class Libraries ---

Portable Class Libraries --- Portable Class Libraries --- Overview In this lab, you ll learn about Portable Class Libraries (PCLs). PCLs enable you to create managed assemblies that work on more than one.net Framework platform. Within

More information

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide Automation Design Canvas 2.0 Beta Quick-Start Guide Contents Creating and Running Your First Test... 3 Adding Quick Verification Steps... 10 Creating Advanced Test Verifications... 13 Creating a Data Driven

More information

Building Mashups Using the ArcGIS APIs for FLEX and JavaScript. Shannon Brown Lee Bock

Building Mashups Using the ArcGIS APIs for FLEX and JavaScript. Shannon Brown Lee Bock Building Mashups Using the ArcGIS APIs for FLEX and JavaScript Shannon Brown Lee Bock Agenda Introduction Mashups State of the Web Client ArcGIS Javascript API ArcGIS API for FLEX What is a mashup? What

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

Nebraska - eforms. Tips and Tricks

Nebraska - eforms. Tips and Tricks Nebraska - eforms Tips and Tricks 1) Nebraska eforms is an ASP.Net 4.0 - Silverlight 4 web application created for industry users to submit required regulatory forms electronically. You must have.net Framework

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

WPF Viewer for Reporting Services 2008/2012 Getting Started

WPF Viewer for Reporting Services 2008/2012 Getting Started WPF Viewer for Reporting Services 2008/2012 Getting Started Last modified on: July 9, 2012 Table of Content Introduction... 3 Prerequisites... 3 Creating application using Microsoft SQL 2008/2008 R2 /2012

More information

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days 2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days Certification Exam This course will help you prepare for the following Microsoft Certified

More information

Vizit 6 Installation Guide

Vizit 6 Installation Guide Vizit 6 Installation Guide Contents Running the Solution Installer... 3 Installation Requirements... 3 The Solution Installer... 3 Activating your License... 7 Online Activation... 7 Offline Activation...

More information

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C1: The Intro Project

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C1: The Intro Project 1 Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C1: The Intro Project Copyright by V. Miszalok, last update: 16-10-2008 Preliminaries Version 01: Page.XAML Version 02: Page.XAML Version 03:

More information

Introduction to Data Templates and Value Converters in Silverlight

Introduction to Data Templates and Value Converters in Silverlight Introduction to Data Templates and Value Converters in Silverlight An overview of Data Templates and Value Converters by JeremyBytes.com Overview Business applications are all about data, and laying out

More information

ArcGIS Story Map Journal Tutorial. A simple tutorial for how to create your own story map journal

ArcGIS Story Map Journal Tutorial. A simple tutorial for how to create your own story map journal ArcGIS Story Map Journal Tutorial A simple tutorial for how to create your own story map journal Before you start In this tutorial you'll use our interactive Story Map Journal Builder to author your journal

More information

Web App Builder: Code-free Development. Adam Ziegler, Esri-Northeast, Local Government Team

Web App Builder: Code-free Development. Adam Ziegler, Esri-Northeast, Local Government Team Web App Builder: Code-free Development Adam Ziegler, aziegler@esri.com Esri-Northeast, Local Government Team Agenda Product overview Web AppBuilder for ArcGIS tour Adding Custom Widgets Community and Resources

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

Introduction to ArcGIS Online and Story Maps

Introduction to ArcGIS Online and Story Maps Introduction to ArcGIS Online and Story Maps Presented by the University of Connecticut s Center for Land Use Education and Research (CLEAR) CLEAR 1 Welcome! Instructor Introductions Course logistics Student

More information

Calendar Management A Demonstration Application of TopBraid Live

Calendar Management A Demonstration Application of TopBraid Live Brief: Calendar Management Calendar Management A Demonstration of TopBraid Live What you will learn in this Brief: Rapid Semantic Building Full life cycle support from model to app Ease of building User

More information

Telerik Test Studio. Web/Desktop Testing. Software Quality Assurance Telerik Software Academy

Telerik Test Studio. Web/Desktop Testing. Software Quality Assurance Telerik Software Academy Telerik Test Studio Web/Desktop Testing Software Quality Assurance Telerik Software Academy http://academy.telerik.com The Lectors Iliyan Panchev Senior QA Engineer@ DevCloud Testing & Test Studio Quality

More information

Best Practices for Designing Effective Map Services

Best Practices for Designing Effective Map Services 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Best Practices for Designing Effective Map Services Ty Fitzpatrick Tanu Hoque What s in this session Map

More information

Silverlight Invaders Step 0: general overview The purpose of this tutorial is to create a small game like space invaders. The first thing we will do is set up the canvas of design some user controls (

More information

This tutorial is designed for software developers who want to learn how to develop quality applications with clean structure of code.

This tutorial is designed for software developers who want to learn how to develop quality applications with clean structure of code. About the Tutorial Every good developer wants and tries to create the most sophisticated applications to delight their users. Most of the times, developers achieve this on the first release of the application.

More information

Getting Started with the ArcGIS Server JavaScript API

Getting Started with the ArcGIS Server JavaScript API Getting Started with the ArcGIS Server JavaScript API Agenda Introduction ArcGIS Server services and mashups REST API Services Directory JavaScript API ArcGIS Server Resource Center Dojo Maps, layers,

More information

Load testing with WAPT: Quick Start Guide

Load testing with WAPT: Quick Start Guide Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

Web GIS: Principles and Applications. Pinde Fu, Ph.D. Project Lead / Senior Developer Professional Services Division

Web GIS: Principles and Applications. Pinde Fu, Ph.D. Project Lead / Senior Developer Professional Services Division Web GIS: Principles and Applications Pinde Fu, Ph.D. pfu@esri.com Project Lead / Senior Developer Professional Services Division 2 Web GIS: Principles and Applications Pinde Fu & Jiulin Sun Web GIS course

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

Step4: Now, Drag and drop the Textbox, Button and Text block from the Toolbox.

Step4: Now, Drag and drop the Textbox, Button and Text block from the Toolbox. Name of Experiment: Display the Unicode for the key-board characters. Exp No:WP4 Background: Student should have a basic knowledge of C#. Summary: After going through this experiment, the student is aware

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

ComponentOne. Extended Library for UWP

ComponentOne. Extended Library for UWP ComponentOne Extended Library for UWP ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com Sales: sales@componentone.com

More information

Design Importer User Guide

Design Importer User Guide Design Importer User Guide Rev: 9 February 2012 Sitecore CMS 6.5 Design Importer User Guide How to import the design of an external webpage as a Sitecore layout or sublayout Table of Contents Chapter 1

More information

AddFlow for Silverlight V 2.0 Tutorial

AddFlow for Silverlight V 2.0 Tutorial AddFlow for Silverlight V 2.0 Tutorial January 2014 Lassalle Technologies http://www.lassalle.com - page 1 - CONTENTS 1) Introduction... 5 2) Last Version enhancements...6 2.1 Version 2.0...6 2.1.1 A major

More information

Expand Your Audience through ArcGIS Online Workshop 2018 IMAGIN Conference

Expand Your Audience through ArcGIS Online Workshop 2018 IMAGIN Conference Workshop 2018 IMAGIN Conference Park Place Hotel and Conference Center June 19, 2018 Welcome Introductions Logistics Bathrooms Schedule (10 am-1 pm) What is ArcGIS Online? Organizational Settings Break

More information

Creating Map Tour Story Maps

Creating Map Tour Story Maps Creating Map Tour Story Maps How to create a Map Tour Story Map quickly and easily using your smartphone or tablet, and your ArcGIS Online Organization Account This Tutorial was Created by Jennifer Anne

More information

For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to

For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to access them. Contents at a Glance About the Author...

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

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2008 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Microsoft SharePoint 2010 Developer's Compendium: The Best of Packt for Extending SharePoint Series Editor Carl Jones

Microsoft SharePoint 2010 Developer's Compendium: The Best of Packt for Extending SharePoint Series Editor Carl Jones Microsoft SharePoint 2010 Developer's Compendium: The Best of Packt for Extending SharePoint Series Editor Carl Jones Chapter No. 4 "Integrating Silverlight 4 with SharePoint 2010" In this package, you

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

Best Practices for Using the Rich Text Editor

Best Practices for Using the Rich Text Editor Best Practices for Using the Rich Text Editor Overview Many pages in ilearn contain large text entry boxes along with many icons and pull down lists (located above the actual text entry area). These icons

More information

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough.

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough. Azure Developer Immersion In this walkthrough, you are going to put the web API presented by the rgroup app into an Azure API App. Doing this will enable the use of an authentication model which can support

More information

Pro Business Applications with Silverlight 4

Pro Business Applications with Silverlight 4 Pro Business Applications with Silverlight 4 Chris Anderson Apress* Contents at a Glance Contents About the Author Acknowledgments iv v xix xx a Chapter 1: Introduction 1 Who This Book Is For 1 About This

More information

Creating and Publishing Faculty Webpages

Creating and Publishing Faculty Webpages Creating and Publishing Faculty Webpages The UNF Template The template we are using today provides a professional page that is easy to work with. Because the pages are already built, faculty members can

More information

Weather forecast ( part 1 )

Weather forecast ( part 1 ) Weather forecast ( part 1 ) I will create a small application that offers the weather forecast for a certain city in the USA. I will consume two webservices for this. The first service will give me an

More information

Developing Rich Internet Applications Using Microsoft Silverlight 4

Developing Rich Internet Applications Using Microsoft Silverlight 4 Developing Rich Internet Applications Using Microsoft Silverlight 4 Duration: 5 Days Course Code: M10554 Overview: This course covers intermediate and advanced topics required to develop professional Silverlight

More information

Intermediate Microsoft Office 2016: Word

Intermediate Microsoft Office 2016: Word Intermediate Microsoft Office 2016: Word Updated January 2017 Price: $1.20 Lesson 1: Setting Margins A margin is the distance from the text to the paper s edge. The default setting is 1 all around the

More information

Week 7: NavigationView Control Exercise

Week 7: NavigationView Control Exercise BCIS 4650 Week 7: NavigationView Control Exercise BUILD THE UI FIRST (ALWAYS). ================================================================================================ 1. Start with a New Project

More information

Lesson 10: Exercise: Tip Calculator as a Universal App

Lesson 10: Exercise: Tip Calculator as a Universal App Lesson 10: Exercise: Tip Calculator as a Universal App In this lesson we're going to take the work that we did in the previous lesson and translate it into a Universal App, which will allow us to distribute

More information

Silverlight: A Beginner s Guide

Silverlight: A Beginner s Guide CHAPTER 11 Silverlight: A Beginner s Guide The noblest pleasure is the joy of understanding. - Leonardo Da Vinci In this chapter: Silverlight Basics Silverlight and the.net Framework Hello Silverlight

More information

Best Practices for Using the Rich Text Editor

Best Practices for Using the Rich Text Editor Best Practices for Using the Rich Text Editor Overview Many pages in Sakai contain large text-entry boxes along with many icons and pull-down lists (located above the actual text entry area). These icons

More information

Lab Assignment 4 Basics of ArcGIS Server. Due Date: 01/19/2012

Lab Assignment 4 Basics of ArcGIS Server. Due Date: 01/19/2012 Lab Assignment 4 Basics of ArcGIS Server Due Date: 01/19/2012 Overview This lab assignment is designed to help you develop a good understanding about the basics of ArcGIS Server and how it works. You will

More information

Building Effective Custom Tasks for ArcGIS Explorer

Building Effective Custom Tasks for ArcGIS Explorer Building Effective Custom Tasks for ArcGIS Explorer Rob Dunfey Dara Hughes Edan Cain ESRI Developer Summit 2008 1 Outline What is ArcGIS Explorer Premier client to ArcGIS Server Programming custom tasks

More information

Getting Started With. A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey Data, Create Charts, & Share Results Online

Getting Started With. A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey Data, Create Charts, & Share Results Online Getting Started With A Step-by-Step Guide to Using WorldAPP Analytics to Analyze Survey, Create Charts, & Share Results Online Variables Crosstabs Charts PowerPoint Tables Introduction WorldAPP Analytics

More information

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

Free to download and distribute from

Free to download and distribute from Topics for this session Introduction Overview of features Using ArcGIS Explorer effectively Customization New features & capabilities Demonstrations *Note: Explorer 1200 What is ArcGIS Explorer GIS for

More information

Developing Intelligent Apps

Developing Intelligent Apps Developing Intelligent Apps Lab 1 Creating a Simple Client Application By Gerry O'Brien Overview In this lab you will construct a simple client application that will call an Azure ML web service that you

More information

Cross Video Gallery 6.6 User Guide

Cross Video Gallery 6.6 User Guide http://dnnmodule.com/ Page 1 of 22 Cross Video Gallery 6.6 User Guide (DNN 7 Video & Audio & YouTube &Slideshow module) http://dnnmodule.com 10/27/2014 Cross Software, China Skype: xiaoqi98@msn.com QQ:

More information

visual studio vs#d express windows desktop

visual studio vs#d express windows desktop Free software used in development 1. Visual studio express 2013 for desktop applications. Express versions are free without time limit, only thing you need is Microsoft account (but you can download and

More information

USER GUIDE. We hope you enjoy using the product, and please don t hesitate to send us questions or provide feedback at Thank You.

USER GUIDE. We hope you enjoy using the product, and please don t hesitate to send us questions or provide feedback at Thank You. USER GUIDE Introduction This User Guide is designed to serve as a brief overview to help you get started. There is also information available under the Help option in the various Contributor interface

More information

Analysing crime data in Maps for Office and ArcGIS Online

Analysing crime data in Maps for Office and ArcGIS Online Analysing crime data in Maps for Office and ArcGIS Online For non-commercial use only by schools and universities Esri UK GIS for School Programme www.esriuk.com/schools Introduction ArcGIS Online is a

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2011 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Nick Tonias, P.E. The CEDRA Corporation. Ian Peebles, GISP The City of Edmond

Nick Tonias, P.E. The CEDRA Corporation. Ian Peebles, GISP The City of Edmond Nick Tonias, P.E. The CEDRA Corporation Ian Peebles, GISP The City of Edmond u u u u u u Brief Intro to CEDRA and City of Edmond Creating Apps using ArcGIS Online Creating Apps using ArcGIS Serer Presentation

More information

Developing Native Windows Phone 7 Applications for SharePoint

Developing Native Windows Phone 7 Applications for SharePoint Developing Native Windows Phone 7 Applications for SharePoint Steve Pietrek Cardinal Solutions About Cardinal OUR FOCUS: Enterprise Rich Internet Applications Mobile Solutions Portals & Collaboration Business

More information

Survey123 Deep Dive. Presented by: Sue Enyedy-Goldner Fall 2018

Survey123 Deep Dive. Presented by: Sue Enyedy-Goldner Fall 2018 Survey123 Deep Dive Presented by: Sue Enyedy-Goldner Fall 2018 Today s Agenda 1. Overview of Survey123 - getting stared with Web Designer 2. Create smarter surveys - using Survey123 Connect 3. Examine

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University. LAB EXERCISE 1: Basic Mapping in ArcMap Harvard University Introduction to ArcMap Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 1: Basic Mapping in ArcMap Individual files (lab instructions,

More information

NVU Web Authoring System

NVU Web Authoring System NVU Web Authoring System http://www.nvu.com/index.php Table of Contents Using Nvu as Your Web Page Authoring System: Getting Started Opening a page, saving, and previewing your work...3 Formatting the

More information

ArcGIS Online. The Road Ahead Geoff Mortson

ArcGIS Online. The Road Ahead Geoff Mortson ArcGIS Online The Road Ahead Geoff Mortson gmortson@esricanada.com ArcGIS Online Easily create and share maps Delivered as intelligent maps Access on virtually any device anyone, anywhere Compliments and

More information

Using ArcGIS for Server. Javier Abadía, Esri España Peter McDaid, Esri UK

Using ArcGIS for Server. Javier Abadía, Esri España Peter McDaid, Esri UK Using ArcGIS for Server Javier Abadía, Esri España Peter McDaid, Esri UK 1. Intro 2. ArcGIS for Server = Geospatial Apps Server 3. Map Services Publishing Flow Apps 4. Spatial Functionality Services Publishing

More information

Connecting a Silverlight Application to Line-of-Business Information

Connecting a Silverlight Application to Line-of-Business Information Microsoft Collaboration Brief March, 2010 Connecting a Silverlight Application to Line-of-Business Information Using the Business Data Connectivity Services (BDC) in SharePoint Server Foundation 2010 Author

More information

TRAINING GUIDE. GIS Admin for Web and Mobile Maps

TRAINING GUIDE. GIS Admin for Web and Mobile Maps TRAINING GUIDE GIS Admin for Web and Mobile Maps GIS Admin for Web and Mobile Maps In this session, we ll cover the tools necessary to properly configure Lucity to work with your GIS environment. We ll

More information

Learn to develop.net applications and master related technologies.

Learn to develop.net applications and master related technologies. Courses Software Development Learn to develop.net applications and master related technologies. Software Development with Design These courses offer a great combination of both.net programming using Visual

More information