Adding Panoramas to Google Maps Using Ajax
|
|
|
- Amberlynn Jackson
- 9 years ago
- Views:
Transcription
1 Adding Panoramas to Google Maps Using Ajax Derek Bradley Department of Computer Science University of British Columbia Abstract This project is an implementation of an Ajax web application. AJAX is a new technology based on asynchronous communication between a client web browser and a back-end server, allowing web applications to request and receive data without ever reloading the page. A popular application that uses Ajax technology is Google Maps. The goal of this project is to develop an extension of Google Maps which includes viewing 360-degree ground-based panorama images. The project includes development of a client-side Ajax engine and user interface in JavaScript, and development of a back-end java servlet that serves panorama data and images. 1 Introduction One of the hottest new technologies in web-based application development is Asynchronous JavaScript and XML (Ajax) [4, 7]. Ajax allows web applications to look and feel more like desktop applications because data from a server can be retrieved asynchronously, without reloading the web page. Updates appear almost immediately, which is an improvement over typical web applications which require users to wait for an entire page to reload, even for small changes. Ajax applications are driven by a client-side JavaScript engine that communicates using XML requests with a server in the background. Currently, one of the biggest users of Ajax technology is Google. Two Ajax applications that Google provides are Google Suggest [6], and Google Maps [5]. Google Suggest is an interface to the Google search engine that dynamically suggests terms as the user types, almost instantly. Google Maps is an addressbased global mapping application that allows users to zoom and drag maps around with the cursor without ever reloading the page. The goal of this project is to implement an extension to the Google Maps application, adding ground-based 360-degree panorama views of specific locations in the world. Inspired by previous work in panorama viewing and imagebased navigation [2], this project investigates the added benefit of virtually seeing the world from the viewpoint of a specific map location. The ground-based views will add value to the Google Maps functionality, which currently only supports satellite views of the location. Panoramic images have been captured at various locations around the UBC campus. An Ajax application has been developed that incorporates Google Maps with an additional panorama server and a JavaScript front-end, providing the functionality of Google Maps with the addition of 360-degree groundbased panorama viewing. The remainder of this paper is organized as follows. Section 2 provides background details, describing AJAX and Google Maps. In section 3 the implementation of this project is described. Section 4 shares some experiences that were encountered during development, and conclusions are given in section 5. 2 Background This section describes Ajax in general and provides a brief overview of the Google Maps web application. 2.1 Asynchronous JavaScript and XML Ajax is a new technology for web application development. The key idea is that communication between the client and the server happens asynchronously, so users do not have to wait for responses and the application appears to behave more interactively. This idea is demonstrated in Figure 1, where the Ajax model is compared to the typical synchronous web application model. Ajax is actually several technologies combined together: a backend web server, data transfer using XML, asynchronous retrieval using XMLHttpRequest, dynamic HTML and a JavaScript client-side engine 1
2 shows screenshots of Google Maps, located at the Computer Science building of the UBC campus in Vancouver. Google has made available an API 1 for integrating the Google Maps functionality into other web applications. This project makes use of the API to create an extended Google Maps application that includes ground-based 360-degree panoramic images. 3 Google Panoramas This section describes the design and implementation details of the panorama extension to the Google Map application. 3.1 System Overview Figure 1. Comparing traditional synchronous web applications (top) with asynchronous Ajax applications (bottom). (Image taken from [4]). that drives the application. The JavaScript engine (or Ajax engine ) is a new layer that is introduced between the user and the server. At the start of a session, the Ajax engine is loaded. The engine is responsible for rendering the user interface and also for communicating with the server. It is this engine that provides the asynchronous functionality of Ajax. When an XML- HttpRequest is sent to the server it is done so in a nonblocking manner. Control is returned to the user until a callback function is initiated indicating the server s response associated with a given request. The response is then processed by the engine without ever having to reload the webpage. The panorama web application is designed in typical Ajax style with a JavaScript client-side engine running in a web browser. The JavaScript client is described in section 3.3. In this application, there is not a single back-end server but two servers. The panorama application uses the Google Maps API, so some of the asynchronous communication is performed with the Google server (to provide the standard map functionality). The second server was designed as part of this project, and its role is to serve up the panorama data and image pieces. This component, developed as a java servlet, is described in section 3.4. An overview of the system is illustrated in Figure Google Maps Google Maps is one of the most widely known applications of Ajax among current web applications. Google Maps provides an address-based global mapping service that allows users to search for a location anywhere in the world by address, intersection, or keyword. Once a map is loaded users can zoom, pan interactively, select points of interest, get driving directions, and view actual satellite images of the map location without requiring a reload. Map images are loaded on-demand as the user pans with the cursor, showing off the asynchronous Ajax implementation. Figure 2 Figure 3. System overview. 3.2 Data Acquisition and Processing Panorama images were captured from four different locations on the UBC campus. At each of the locations, a series of overlapping images were taken with a regular 1 2
3 (a) (b) (c) Figure 2. Google Map showing the CS building at UBC. (a) Regular, (b) Satellite view, (c) Hybrid view. with the locations and names of all the panoramas. The associated callback function for this request parses the XML response and creates markers on the Google map at the specified GPS locations. The name of each panorama is also associated with the corresponding marker. When the user performs a mouse-over the marker, a small display window appears with the panorama name. The third part of the user interface is an area of the screen where the panorama images are displayed. When a user clicks on one of the panorama markers on the map, an Ajax message is created to request the first four pieces of the specific panorama. In the callback function for this request, the XML data is parsed and the specific image source locations are loaded into image place-holders on the page. This creates a panorama view window with approximately a 35-degree field of view. Two buttons automatically appear next to the panorama view area, which allow the user to pan forward or backward within the panorama. Each pan request sends another Ajax message asking for the new pieces of the panorama. As a new set of image pieces come in, the engine displays them on the page (removing old pieces that are no longer in the field of view). Figure 5 shows a screenshot of the JavaScript client running in a web browser. The panorama image pieces are loaded asynchronously, so as the user waits for part of the panorama to be loaded the engine is still processing the user s actions. For example, the user can manipulate the Google map in any way while waiting for a panorama image to load, even if the command involves more Ajax communication with the Google server. This benefit is demonstrated with the addition of a Continuous Pan button on the user interface. When the user presses this button, the en- digital camera in order to capture the 360-degree field of view. Approximately 12 images were captured per location, and they were stitched together in a nearly seamless way using the Canon PhotoStitch commercial software. Figure 4 shows the final panoramic images of the four locations. For each location, the Global Positioning System (GPS) coordinates were also recorded using a standard GPS device. In order to maintain generality, each of the panoramas was resized to 4200 x 400 pixels. A small utility program was then created using the Open Source Computer Vision library [3] to split each panorama into subimages of size 200 x 200 pixels. These sub-images (or panorama pieces) are used in the Ajax web application to load the panorama piece by piece on demand. 3.3 JavaScript Client The JavaScript client is the Ajax engine. It contains a user interface using dynamic HTML, a function for preparing XMLHttpRequest objects, and callback functions for handling the response events. On one side of the user interface is the traditional Google map, with basic controls to pan, zoom, and switch views. This part of the interface is built when the page is loaded and the starting map location is the UBC campus by default. The Google Maps API is imported as a single JavaScript file, and the desired map is added to the page using a few simple calls. The API automatically handles Ajax communication with the Google server. The second component of the interface is a button called Display Panoramas. When this button is pressed the engine builds an Ajax request and sends it to the panorama servlet, asking for an XML file 3
4 Figure degree panoramic images captured from around UBC campus. gine simulates a sequence of right pan operations, one every 500 milliseconds, until the Stop Panning button is pressed. This functionality shows the true asynchronous Ajax nature of the application, because the user is free to manipulate the Google map and even load new panoramas into the viewer, while it never stops panning correctly (and each pan operation involves communication with the servlet). 3.4 Java Servlet The panorama data and image pieces are stored on a server. The JavaScript client communicates to this server using Ajax messages that are received by a java servlet program. The servlet runs on Apache Tomcat [1], which is an open source servlet container. The servlet operates with the thread-per-request model. When a request is received, the servlet dispatches the request to one of two request handlers, one for serving the basic data for all panoramas (ie: location, name, ID) and one for serving the individual panorama image pieces. The classes of the servlet application are listed in Table 1, along with a brief description of each. The main panorama data is stored locally on the server in an XML file. This file can be modified at run time to add or remove panoramas from the global list. For the purposes of this project, the panorama servlet was always started on the local host. However, the servlet (and panorama data) should be able to reside on any server in the network or Internet that has a servlet container available. Class LocationsRequestHandler PanoramaRequestHandler PanoServlet Strings XMLHandler RequestHandler Description Request handler to serve panorama location, name and IDs. Request handler to serve panorama image pieces. Main servlet that receives and dispatches requests. Collection of defined strings. Helper class to parse XML data (SAX). Interface for the request handlers. Table 1. Description of the classes in the java servlet application. 4 Experience This section is to identify the two main problems that were encountered when developing the panorama web application for this project. The first problem was inconsistencies between different browsers. The application was tested in Mozilla Firefox and Microsoft Internet Explorer 6.0. Some original prototype image manipulation code in JavaScript did not work in Firefox, yet worked fine in Internet Explorer. In addition, the document layout 4
5 Figure 5. JavaScript client application. is different between the browsers, and Firefox leaves a horizontal line of white space between the image pieces in the panorama view. However, the response to button clicks is faster in Firefox, and some rapid repeated button presses are lost in Internet Explorer. The second difficulty in developing this system was the problem of debugging the application. This was the largest challenge encountered. In this web-based environment, experience showed that bugs typically result in a lack of response and no error messages. No debugging tools were employed, so locating sources of errors in the JavaScript code was achieved using oldfashioned output statements through dynamic HTML. Even more challenging was the task of locating bugs in the back-end servlet, because there was no output window to even write messages to. Debug statements from the servlet were compiled into XML responses and returned to the Ajax engine for display. The difficulty in debugging the application added more time to this project than originally anticipated, and unfortunately it also limited the number of features that were added to the final result. 5 Conclusion This project is an implementation of an Ajax web application. The goal of this project is to extend the popular Google Maps functionality to include groundbased 360-degree panoramic images with an interactive user interface. Asynchronous Ajax communication is used in conjunction with the Google Maps API, a backend java servlet, and a client-side JavaScript engine to provide a highly responsive web application. The system enables simultaneous map and panorama manipulation without ever reloading the web page. This project is yet another example of how Ajax technology can make web applications appear more like desktop applications, defining why Ajax is currently a hot topic in web design. References [1] Apache-Tomcat. [2] D. Bradley, A. Brunton, M. Fiala, and G. Roth. Imagebased navigation in real environments using panoramas. In IEEE International Workshop on Haptic Audio Visual Environments and their Applications, [3] G. Bradski. The OpenCV library. Dr. Dobb s Journal of Software Tools, 25(11):120, , nov [4] J. J. Garrett. Ajax: A new approach to web applications ( archives/ php), [5] GoogleMaps. [6] GoogleSuggest. complete=1&hl=en. [7] L. D. Paulson. Building rich web applications with ajax. IEEE Computer, 38(10):14 17, Oct
Credits: Some of the slides are based on material adapted from www.telerik.com/documents/telerik_and_ajax.pdf
1 The Web, revisited WEB 2.0 [email protected] Credits: Some of the slides are based on material adapted from www.telerik.com/documents/telerik_and_ajax.pdf 2 The old web: 1994 HTML pages (hyperlinks)
Term Paper. P r o f. D r. E d u a r d H e i n d l. H o c h s c h u l e F u r t w a n g e n U n i v e r s i t y. P r e s e n t e d T o :
Version: 0.1 Date: 20.07.2009 Author(s): Doddy Satyasree AJAX Person responsable: Doddy Satyasree Language: English Term Paper History Version Status Date 0.1 Draft Version created 20.07.2009 0.2 Final
An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0
An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0 September 2010 Copyright IBM Corporation 2010. 1 Overview Rational Application Developer, Version 8.0, contains
Performance Testing for Ajax Applications
Radview Software How to Performance Testing for Ajax Applications Rich internet applications are growing rapidly and AJAX technologies serve as the building blocks for such applications. These new technologies
Distance Examination using Ajax to Reduce Web Server Load and Student s Data Transfer
Distance Examination using Ajax to Reduce Web Server Load and Student s Data Transfer Distance Examination using Ajax to Reduce Web Server Load and Student s Data Transfer Ridwan Sanjaya Soegijapranata
Ajax: A New Approach to Web Applications
1 of 5 3/23/2007 1:37 PM Ajax: A New Approach to Web Applications by Jesse James Garrett February 18, 2005 If anything about current interaction design can be called glamorous, it s creating Web applications.
Implementing a Web-based Transportation Data Management System
Presentation for the ITE District 6 Annual Meeting, June 2006, Honolulu 1 Implementing a Web-based Transportation Data Management System Tim Welch 1, Kristin Tufte 2, Ransford S. McCourt 3, Robert L. Bertini
Abstract. Description
Project title: Bloodhound: Dynamic client-side autocompletion features for the Apache Bloodhound ticket system Name: Sifa Sensay Student e-mail: [email protected] Student Major: Software Engineering
A Tool for Evaluation and Optimization of Web Application Performance
A Tool for Evaluation and Optimization of Web Application Performance Tomáš Černý 1 [email protected] Michael J. Donahoo 2 [email protected] Abstract: One of the main goals of web application
GUI and Web Programming
GUI and Web Programming CSE 403 (based on a lecture by James Fogarty) Event-based programming Sequential Programs Interacting with the user 1. Program takes control 2. Program does something 3. Program
ASP.NET: THE NEW PARADIGM FOR WEB APPLICATION DEVELOPMENT
ASP.NET: THE NEW PARADIGM FOR WEB APPLICATION DEVELOPMENT Dr. Mike Morrison, University of Wisconsin-Eau Claire, [email protected] Dr. Joline Morrison, University of Wisconsin-Eau Claire, [email protected]
From Desktop to Browser Platform: Office Application Suite with Ajax
From Desktop to Browser Platform: Office Application Suite with Ajax Mika Salminen Helsinki University of Technology [email protected] Abstract Web applications have usually been less responsive and provided
Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN
Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT For organizations that need to implement a robust data entry solution, options are somewhat limited
Getting Started Guide with WIZ550web
1/21 WIZ550web is an embedded Web server module based on WIZnet s W5500 hardwired TCP/IP chip, Users can control & monitor the 16-configurable digital I/O and 4-ADC inputs on module via web pages. WIZ550web
CaptainCasa. CaptainCasa Enterprise Client. CaptainCasa Enterprise Client. Feature Overview
Feature Overview Page 1 Technology Client Server Client-Server Communication Client Runtime Application Deployment Java Swing based (JRE 1.6), generic rich frontend client. HTML based thin frontend client
Ajax Design and Usability
Ajax Design and Usability William Hudson [email protected] www.syntagm.co.uk/design Ajax Design and Usability About Ajax Ajax in context How Ajax works How Ajax is different How Ajax is similar
Guide 130025 VIGIL X-View (360 Dewarping Plugin) Guide
Guide 130025 VIGIL X-View (360 Dewarping Plugin) Guide Guide #: 130025-3 Date: Sept. 1 st, 2015 Product Affected: VIGIL Server,VIGIL 360 Dewarping Plugin Purpose: This document is intended to instruct
Developer Tutorial Version 1. 0 February 2015
Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...
Rich Internet Applications
Rich Internet Applications Prepared by: Husen Umer Supervisor: Kjell Osborn IT Department Uppsala University 8 Feb 2010 Agenda What is RIA? RIA vs traditional Internet applications. Why to use RIAs? Running
MASTERTAG DEVELOPER GUIDE
MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...
Front-End Performance Testing and Optimization
Front-End Performance Testing and Optimization Abstract Today, web user turnaround starts from more than 3 seconds of response time. This demands performance optimization on all application levels. Client
Programming in HTML5 with JavaScript and CSS3
Course 20480B: Programming in HTML5 with JavaScript and CSS3 Course Details Course Outline Module 1: Overview of HTML and CSS This module provides an overview of HTML and CSS, and describes how to use
Developing ASP.NET MVC 4 Web Applications MOC 20486
Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies
Advantage of Jquery: T his file is downloaded from
What is JQuery JQuery is lightweight, client side JavaScript library file that supports all browsers. JQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling,
How To Write A Web Server In Javascript
LIBERATED: A fully in-browser client and server web application debug and test environment Derrell Lipman University of Massachusetts Lowell Overview of the Client/Server Environment Server Machine Client
Enabling AJAX in ASP.NET with No Code
Enabling AJAX in ASP.NET with No Code telerik s r.a.d.ajax enables AJAX by simply dropping a control on a Web page, without otherwise modifying the application or writing a single line of code By Don Kiely
Developing ASP.NET MVC 4 Web Applications
Course M20486 5 Day(s) 30:00 Hours Developing ASP.NET MVC 4 Web Applications Introduction In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools
ICE Trade Vault. Public User & Technology Guide June 6, 2014
ICE Trade Vault Public User & Technology Guide June 6, 2014 This material may not be reproduced or redistributed in whole or in part without the express, prior written consent of IntercontinentalExchange,
Client-side Web Engineering From HTML to AJAX
Client-side Web Engineering From HTML to AJAX SWE 642, Spring 2008 Nick Duan 1 What is Client-side Engineering? The concepts, tools and techniques for creating standard web browser and browser extensions
Google Web Toolkit. Introduction to GWT Development. Ilkka Rinne & Sampo Savolainen / Spatineo Oy
Google Web Toolkit Introduction to GWT Development Ilkka Rinne & Sampo Savolainen / Spatineo Oy GeoMashup CodeCamp 2011 University of Helsinki Department of Computer Science Google Web Toolkit Google Web
PROJECT MANAGEMENT SYSTEM
Requirement Analysis Document v.2 14.12.2009 CENG-401 SOFTWARE ENGINEER PROJECT MANAGEMENT SYSTEM (Project Manager) Ahmet Edip SEÇKİN 07010555 (Developer) Erhan ŞEN 07010507 (Developer) Semih Serdar CENGİZOĞLU
Preface. Motivation for this Book
Preface Asynchronous JavaScript and XML (Ajax or AJAX) is a web technique to transfer XML data between a browser and a server asynchronously. Ajax is a web technique, not a technology. Ajax is based on
USAGE OF ASP.NET AJAX FOR BINUS SCHOOL SERPONG WEB APPLICATIONS
USAGE OF ASP.NET AJAX FOR BINUS SCHOOL SERPONG WEB APPLICATIONS Karto Iskandar 1 ; Andrew Thejo Putranto 2 1,2 Computer Science Department, School of Computer Science, Bina Nusantara University Jln. K.H.
Rich-Internet Anwendungen auf Basis von ColdFusion und Ajax
Rich-Internet Anwendungen auf Basis von ColdFusion und Ajax Sven Ramuschkat [email protected] München & Zürich, März 2009 A bit of AJAX history XMLHttpRequest introduced in IE5 used in
This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.
20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction
Using the VMRC Plug-In: Startup, Invoking Methods, and Shutdown on page 4
Technical Note Using the VMRC API vcloud Director 1.5 With VMware vcloud Director, you can give users the ability to access virtual machine console functions from your web-based user interface. vcloud
AJAX. Gregorio López López [email protected] Juan Francisco López Panea [email protected]
AJAX Gregorio López López [email protected] Juan Francisco López Panea [email protected] Departamento de Ingeniería Telemática Universidad Carlos III de Madrid Contents 1. Introduction 2. Overview
Porting Legacy Windows Applications to the Server and Web
Porting Legacy Windows Applications to the Server and Web About TX Text Control.NET Server: TX Text Control.NET Server is a fully programmable word processing engine for deployment in an ASP.NET server
Web Testing. Main Concepts of Web Testing. Software Quality Assurance Telerik Software Academy http://academy.telerik.com
Web Testing Main Concepts of Web Testing Software Quality Assurance Telerik Software Academy http://academy.telerik.com The Lectors Snejina Lazarova Product Manager Business Services Team Dimo Mitev QA
Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart
Spotfire v6 New Features TIBCO Spotfire Delta Training Jumpstart Map charts New map chart Layers control Navigation control Interaction mode control Scale Web map Creating a map chart Layers are added
AJAX Integration Approach for Collaborative Calendar-Server Web Services
AJAX Integration Approach for Collaborative Calendar-Server Web Services Ahmet Fatih Mustacoglu 1, 2 1 Community Grids Lab, Indiana University 2 Department of Computer Science Indiana University [email protected]
Design and Functional Specification
2010 Design and Functional Specification Corpus eready Solutions pvt. Ltd. 3/17/2010 1. Introduction 1.1 Purpose This document records functional specifications for Science Technology English Math (STEM)
Administrator's Guide
Search Engine Optimization Module Administrator's Guide Installation and configuration advice for administrators and developers Sitecore Corporation Table of Contents Chapter 1 Installation 3 Chapter 2
Apple Applications > Safari 2008-10-15
Safari User Guide for Web Developers Apple Applications > Safari 2008-10-15 Apple Inc. 2008 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system,
Introduction to BlackBerry Smartphone Web Development Widgets
Introduction to BlackBerry Smartphone Web Development Widgets Trainer name Date 2009 Research In Motion Limited V1.00 are stand-alone BlackBerry applications that consist of standard web components, including
Bb COLLABORATE (ONLINE ROOM) APPLICATION SHARING REFERENCE GUIDE
Bb COLLABORATE (ONLINE ROOM) APPLICATION SHARING REFERENCE GUIDE Reminder: All users should utilize Mozilla Firefox browser when accessing Bb Collaborate Online Rooms. Application sharing allows a Moderator
Microsoft Publisher 2010 What s New!
Microsoft Publisher 2010 What s New! INTRODUCTION Microsoft Publisher 2010 is a desktop publishing program used to create professional looking publications and communication materials for print. A new
Chapter 12: Advanced topic Web 2.0
Chapter 12: Advanced topic Web 2.0 Contents Web 2.0 DOM AJAX RIA Web 2.0 "Web 2.0" refers to the second generation of web development and web design that facilities information sharing, interoperability,
Web Application Development
L i m n o r S t u d i o U s e r s G u i d e P a g e 1 Web Application Development Last update: January 29, 2015 Contents Introduction... 3 Create a project for web application... 3 Select Web Application
Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led
Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5
Position Paper: Toward a Mobile Rich Web Application Mobile AJAX and Mobile Web 2.0
Position Paper: Toward a Mobile Rich Web Application Mobile AJAX and Mobile Web 2.0 Jonathan Jeon, [email protected] Senior Member of Research Staff, ETRI Seungyun Lee, [email protected] Research Director
Shipbeat Magento Module. Installation and user guide
Shipbeat Magento Module Installation and user guide This guide explains how the Shipbeat Magento Module is installed, used and uninstalled from your Magento Community Store. If you have questions or need
5.1 Features 1.877.204.6679. [email protected] Denver CO 80202
1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street [email protected] Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation
Software Requirements Specification For Real Estate Web Site
Software Requirements Specification For Real Estate Web Site Brent Cross 7 February 2011 Page 1 Table of Contents 1. Introduction...3 1.1. Purpose...3 1.2. Scope...3 1.3. Definitions, Acronyms, and Abbreviations...3
SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1
SUBJECT TITLE : WEB TECHNOLOGY SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1 16 02 2. CSS & JAVASCRIPT Test
Pentesting Web Frameworks (preview of next year's SEC642 update)
Pentesting Web Frameworks (preview of next year's SEC642 update) Justin Searle Managing Partner UtiliSec Certified Instructor SANS Institute [email protected] // @meeas What Are Web Frameworks Frameworks
Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013
Mobility Introduction Android Duration 16 Working days Start Date 1 st Oct 2013 Day 1 1. Introduction to Mobility 1.1. Mobility Paradigm 1.2. Desktop to Mobile 1.3. Evolution of the Mobile 1.4. Smart phone
Building A Self-Hosted WebRTC Project
Building A Self-Hosted WebRTC Project Rod Apeldoorn EasyRTC Server Lead Priologic Software Inc. [email protected] Slides will be available at: http://easyrtc.com/cloudexpo/ A Little About Priologic
Enterprise Mobile Application Development: Native or Hybrid?
Enterprise Mobile Application Development: Native or Hybrid? Enterprise Mobile Application Development: Native or Hybrid? SevenTablets 855-285-2322 [email protected] http://www.seventablets.com
1. INTERFACE ENHANCEMENTS 2. REPORTING ENHANCEMENTS
W E L C O M E T O M O N I T O R I N G H E A V E N NEW THINGS ABOUT PANDORA FMS 5.0 A new version of Pandora FMS full of enhancements is about to hit the market. Pandora FMS 5.0 will be released by the
International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] ISSN: 2349-6495
International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] Survey on Automation Testing Tools for Mobile Applications Dr.S.Gunasekaran 1, V. Bargavi 2 1 Department
Cloud Surveillance. Cloud Surveillance NVMS. Network Video Management System. isecucloud. isecucloud
Cloud Surveillance Network Video Management System isecucloud isecucloud Network Video Management System Introduction In the digital era, the demand for remote monitoring has continued to increase. Users
Lucy Zhang UI Developer [email protected]/[email protected] Contact: 646-896-9088
Lucy Zhang UI Developer [email protected]/[email protected] Contact: 646-896-9088 SUMMARY Over 7 years of extensive experience in the field of front-end Web Development including Client/Server
deskspace responsive web builder: Instructions
deskspace responsive web builder: Instructions Site Manager Editor Viewer Settings Features The Free & Personal Licenses cover these features. The Pro Licenses add these additional features. Pro screen
Administrator s Guide
SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide Rev: 2011-06-07 SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide How to use the Search Engine Optimization Toolkit to optimize your
Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT
Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT AGENDA 1. Introduction to Web Applications and ASP.net 1.1 History of Web Development 1.2 Basic ASP.net processing (ASP
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET
A review and analysis of technologies for developing web applications
A review and analysis of technologies for developing web applications Asha Mandava and Solomon Antony Murray state University Murray, Kentucky Abstract In this paper we review technologies useful for design
ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE NUMBER CS 215 - WEB DEVELOPMENT & PROGRAMMING I AND TITLE:
ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE NUMBER CS 215 - WEB DEVELOPMENT & PROGRAMMING I AND TITLE: B. CURRICULUM: Mathematics / Computer Science Unit Offering PROGRAM: Web-Network Technology Certificate
An Introduction to KeyLines and Network Visualization
An Introduction to KeyLines and Network Visualization 1. What is KeyLines?... 2 2. Benefits of network visualization... 2 3. Benefits of KeyLines... 3 4. KeyLines architecture... 3 5. Uses of network visualization...
Dreamweaver. Introduction to Editing Web Pages
Dreamweaver Introduction to Editing Web Pages WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 INTRODUCTION TO DREAMWEAVER... 1 Document Window 3 Toolbar 3 Insert Panel 4 Properties Panel
A CLOUD-BASED FRAMEWORK FOR ONLINE MANAGEMENT OF MASSIVE BIMS USING HADOOP AND WEBGL
A CLOUD-BASED FRAMEWORK FOR ONLINE MANAGEMENT OF MASSIVE BIMS USING HADOOP AND WEBGL *Hung-Ming Chen, Chuan-Chien Hou, and Tsung-Hsi Lin Department of Construction Engineering National Taiwan University
Embraiz CRM System User Guide
Embraiz CRM System User Guide Version Date Prepared By Remark V 1.0 2008-10-6 Lok shu V 2.0 2008-10-9 Yolanda Tang V 3.0 2008-12-11 Yolanda Tang Contents Preface... 4 About this user guide... 4 Audience...
<Insert Picture Here> Oracle Application Express 4.0
Oracle Application Express 4.0 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any
FormAPI, AJAX and Node.js
FormAPI, AJAX and Node.js Overview session for people who are new to coding in Drupal. Ryan Weal Kafei Interactive Inc. http://kafei.ca These slides posted to: http://verbosity.ca Why? New developers bring
Web Apps The Next Generation
Web Apps The Next Generation Access Opportunity Or Challenge? T. V. Raman Google Research Web Apps The Next Generation p. 1 Outline Web Applications The access challenge What does accessible mean? Web
Key Benefits of Microsoft Visual Studio 2008
Key Benefits of Microsoft Visual Studio 2008 White Paper December 2007 For the latest information, please see www.microsoft.com/vstudio The information contained in this document represents the current
Building and Using Web Services With JDeveloper 11g
Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the
Issues of Hybrid Mobile Application Development with PhoneGap: a Case Study of Insurance Mobile Application
DATABASES AND INFORMATION SYSTEMS H.-M. Haav, A. Kalja and T. Robal (Eds.) Proc. of the 11th International Baltic Conference, Baltic DB&IS 2014 TUT Press, 2014 215 Issues of Hybrid Mobile Application Development
Unlocking the Java EE Platform with HTML 5
1 2 Unlocking the Java EE Platform with HTML 5 Unlocking the Java EE Platform with HTML 5 Overview HTML5 has suddenly become a hot item, even in the Java ecosystem. How do the 'old' technologies of HTML,
idisplay v.2.0 User Guide
idisplay v.2.0 User Guide 2013 i3 International Inc. The contents of this user manual are protected under copyright and computer program laws. www.i3international.com 1.866.840.0004 CANADA 780 Birchmount
unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001
unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information described
AJAX: Highly Interactive Web Applications. Jason Giglio. [email protected]
AJAX 1 Running head: AJAX AJAX: Highly Interactive Web Applications Jason Giglio [email protected] AJAX 2 Abstract AJAX stands for Asynchronous JavaScript and XML. AJAX has recently been gaining attention
Dreamweaver Tutorial - Dreamweaver Interface
Expertrating - Dreamweaver Interface 1 of 5 6/14/2012 9:21 PM ExpertRating Home ExpertRating Benefits Recommend ExpertRating Suggest More Tests Privacy Policy FAQ Login Home > Courses, Tutorials & ebooks
J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX
Oracle Application Express 3 The Essentials and More Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Arie Geller Matthew Lyon J j enterpririse PUBLISHING BIRMINGHAM
Example. Represent this as XML
Example INF 221 program class INF 133 quiz Assignment Represent this as XML JSON There is not an absolutely correct answer to how to interpret this tree in the respective languages. There are multiple
Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB)
Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Course Number: 70-567 UPGRADE Certification Exam 70-567 - UPGRADE: Transition your MCPD Web Developer Skills to MCPD ASP.NET
Introducing Apache Pivot. Greg Brown, Todd Volkert 6/10/2010
Introducing Apache Pivot Greg Brown, Todd Volkert 6/10/2010 Speaker Bios Greg Brown Senior Software Architect 15 years experience developing client and server applications in both services and R&D Apache
Facebook Twitter YouTube Google Plus Website Email. o Zooming and Panning. Panel. 3D commands. o Working with Canvas
WEB DESIGN COURSE COURSE COVERS: Photoshop HTML 5 CSS 3 Design Principles Usability / UI Design BOOTSTRAP 3 JAVASCRIPT JQUERY CSS Animation Optimizing of Web SYLLABUS FEATURES 2 Hours of Daily Classroom
CourseBuilder Extension ADOBE elearning SUITE 6
CourseBuilder Extension ADOBE elearning SUITE 6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Getting Started Overview..............................................................................................................
WebEx. Remote Support. User s Guide
WebEx Remote Support User s Guide Version 6.5 Copyright WebEx Communications, Inc. reserves the right to make changes in the information contained in this publication without prior notice. The reader should
Documentation of open source GIS/RS software projects
Contract no. Workpackage Delivery Delivery Date 030776 WP1 D1.6 2007-07-02 CASCADOSS Development of a trans-national cascade training programme on Open Source GIS&RS Software for environmental applications
Implementing Mobile Thin client Architecture For Enterprise Application
Research Paper Implementing Mobile Thin client Architecture For Enterprise Paper ID IJIFR/ V2/ E1/ 037 Page No 131-136 Subject Area Information Technology Key Words JQuery Mobile, JQuery Ajax, REST, JSON
Programming Fundamentals of Web Applications Course 10958A; 5 Days
Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Programming Fundamentals of Web Applications Course 10958A; 5 Days Course
