CS5530 Mobile/Wireless Systems Using Google Map in Android

Size: px
Start display at page:

Download "CS5530 Mobile/Wireless Systems Using Google Map in Android"

Transcription

1 Mbile/Wireless Systems Using Ggle Map in Andrid Yanyan Zhuang Department f Cmputer Science UC. Clrad Springs

2 Setup Install the Ggle Play services SDK Tls > Andrid > SDK manager 2

3 Create a Ggle Maps prject Select Ggle Maps Activity in the 'Add an activity t Mbile' dialg When build finished, Andrid Studi pens ggle_maps_api.xml and MapsActivity.java ggle_maps_api.xml cntains instructins n getting a Ggle Maps API key befre yu try t run the applicatin. 3

4 Get a Ggle Maps API key Apps need an API key t access Ggle Maps servers The key is free. Yu can use it with any f yur applicatins that call the Ggle Maps Andrid API, and it supprts an unlimited number f users 1. Cpy the link in ggle_maps_api.xml, paste it int brwser 2. Fllw the instructins t create a new prject n the Ggle API Cnsle r select an existing prject 3. Create an Andrid-restricted API key fr yur prject 4. Cpy the resulting API key, g back t Andrid Studi, and paste the API key int the <string> element in ggle_maps_api.xml May use the same key fr mre than ne app 4

5 Run the app By default, the XML file that defines the app's layut is at res/layut/activity_maps.xml The simplest way t see yur app in actin is t cnnect an Andrid device t yur cmputer Yu can use Andrid Emulatr t run app When chsing an emulatr, use Andrid r higher, and be careful t pick an image that includes the Ggle APIs, r the applicatin will nt have the runtime APIs in rder t execute 5

6 Run the app (2) Yu shuld see a map with a marker psitined ver Sydney, Australia If yu dn't see a map, check that yu've added an API key as described Check the lg in Andrid Studi's Andrid Mnitr fr errr messages abut the API key Different ways t get the API key 6

7 Understand the cde AndridManifest.xml <meta-data andrid:name="cm.ggle.andrid.ge.api_key" /> (generated fr yu) activity_maps.xml <fragment> element t yur activity's layut file Defines a SupprtMapFragment t act as a cntainer fr the map and t prvide access t the GgleMap bject <fragment name="cm.ggle.andrid.gms.maps.supprtmapfragment" andrid:layut_width="match_parent" andrid:layut_height="match_parent"/> 7

8 Understand the cde What is a fragment? A Fragment represents a behavir r a prtin f user interface in an Activity Can cmbine multiple fragments in a single activity t build a multi-pane UI and reuse a fragment in multiple activities Can think f a fragment as a mdular sectin f an activity, which has its wn lifecycle, receives its wn input events, and which yu can add r remve while the activity is running } srt f like a "sub activity" that yu can reuse in different activities 8

9 Understand the cde MapsActivity s prtected vid ncreate(bundle savedinstancestate) { super.ncreate(savedinstancestate); // set the layut file as the cntent view setcntentview(r.layut.activity_maps); // get a handle t the map fragment SupprtMapFragment mapfragment = (SupprtMapFragment) getsupprtfragmentmanager().findfragmentbyid(r.id.map); // use getmapasync() t register fr map callback (when map is ready) mapfragment.getmapasync(this); } 9

10 Understand the cde Implement OnMapReadyCallback interface & verride nmapready(): set up the map when GgleMap bject is available public class MapsActivity extends AppCmpatActivity implements OnMapReadyCallback { // OnCreate() methd here: as described n last public vid nmapready(gglemap gglemap) { // Add a marker in Sydney, Australia, and mve map's camera LatLng sydney = new LatLng( , ); gglemap.addmarker(new MarkerOptins().psitin(sydney).title("Marker in Sydney")); gglemap.mvecamera(cameraupdatefactry.newlatlng(sydney)); } } 10

11 Understand the cde By default, the Ggle Maps API displays the cntent f title when the user taps a marker gglemap.addmarker(new MarkerOptins().psitin(sydney).title("Marker in Sydney")); There's n need t add a click listener fr the marker if yu re happy with the default behavir 11

12 Summarize The basic steps fr adding a map 1. (Yu nly need t d this nce) Get Ggle Play Service SDK, btain a key and add the required attributes t Andrid manifest 2. Add a <fragment> element t the layut file fr the Activity 3. Call getmapasync() n the fragment t register the callback 4. Implement the OnMapReadyCallback interface and use the nmapready(gglemap) callback t get a handle t the GgleMapbject 12

13 Map Types Nrmal Hybrid Terrain Satellite Nne GgleMap map;... // Sets the map type t be "hybrid" map.setmaptype(gglemap.map_type_hybrid); 13

14 Markers Yu can custmize markers by changing the default clr, r replacing the marker icn with a custm image Inf windws can prvide additinal cntext t a marker Markers are bjects f type Marker Added t map with the GgleMap.addMarker(markerOptins) methd Receive click events by default, and are ften used with event listeners t bring up inf windws Previus example } gglemap.addmarker(new MarkerOptins().psitin(sydney).title("Marker in Sydney")); 14

15 Markers Sme ther examples Marker marker = gglemap.addmarker(new MarkerOptins().psitin(new LatLng(-34, 151))); marker.revmte(); Setting a marker t be invisible, and transparency Marker marker = gglemap.addmarker(new MarkerOptins().psitin(new LatLng(-34, 151)).visible(false).alpha(0.8f)); 15

16 Markers Once a marker is created, yu can change its prperty marker.setalpha(1.0f); marker.setvisible(true); marker.setpsitin(new LatLng(-34, 151)); Why marker visibility? Faster t make an invisible marker visible, than creating a new marker Shw infrmatin gglemap.addmarker(new MarkerOptins().psitin(sydney).title("Sydney").snippet( Ppulatin: 4.5 millin in 2015 )); 16

17 Markers Respnd t click events Activity must implement GgleMap.OnMarkerClickListener Set a listener fr marker click public vid nmapready(gglemap gglemap) {... mmap.setonmarkerclicklistener(this); } Implement callback functin nmarkerclick() 17

18 Markers Respnd t click events Implement callback functin nmarkerclick() public blean nmarkerclick(final Marker marker) { if (marker.equals(mymarker)) { Tast.makeText(this, marker.gettitle() + " has been clicked!", Tast.LENGTH_LONG).shw(); } return false; } 18

19 Tasts A tast prvides simple feedback abut an peratin in a small pp-up Only fills the amunt f space required fr the message and the current activity remains visible and interactive Tasts autmatically disappear after a timeut Instantiate a Tast bject with maketext() methd 3 parameters: the applicatin Cntext (usually this), the text message, and the duratin fr the tast Tast.LENGTH_SHORT and Tast.LENGTH_LONG 19

20 Tasts Example Cntext cntext = getapplicatincntext(); CharSequence text = "Hell tast!"; int duratin = Tast.LENGTH_SHORT; Tast tast = Tast.makeText(cntext, text, duratin); tast.shw(); Tast.makeText(cntext, text, duratin).shw(); 20

21 Tasts Psitining yur Tast A standard tast ntificatin appears near the bttm f the screen, centered hrizntally Yu can change this psitin with the setgravity(int, int, int) methd: a Gravitycnstant, an x-psitin ffset, and a y-psitin ffset If the tast shuld appear in the tp-left crner } tast.setgravity(gravity.top Gravity.LEFT, 0, 0); } If yu want t nudge the psitin t the right, increase the value f the secnd parameter. T nudge it dwn, increase the value f the last parameter 21

22 Select Current Place Create a Ggle API client Als knwn as the Ggle API client: cnnect with fused lcatin prvider and Ggle Places API } private GgleApiClientmGgleApiClient; 22

23 Select Current Place Build a Ggle API client Request the fused lcatin prvider (LcatinServices.API) and the tw parts f the Ggle Places API fr Andrid (Places.GEO_DATA_API and Places.PLACE_DETECTION_API) mggleapiclient = new GgleApiClient.Builder(this).enableAutManage(this /* FragmentActivity */, this /* OnCnnectinFailedListener */).addcnnectincallbacks(this).addapi(lcatinservices.api).addapi(places.geo_data_api).addapi(places.place_detection_api).build(); mggleapiclient.cnnect(); 23

24 Select Current Place Cannt reslve LcatinServices and Places Add dependencies in build.gradle (Mdule: app) cmpile 'cm.ggle.andrid.gms:play-services-lcatin:10.2.0' cmpile 'cm.ggle.andrid.gms:play-services-places: Sync Then we can imprt classes fr LcatinServices and Places 24

25 Select Current Place Call back functins f public vid ncnnected(bundle cnnectinhint) {... } /* Handles failure t cnnect t the Ggle Play services client. public vid ncnnectinfailed(@nnnullcnnectinresult result) { Lg.d(TAG, "Play services cnnectin failed: CnnectinResult.getErrrCde() = " + result.geterrrcde()); } /* Handles suspensin f the cnnectin t the Ggle Play services client. public vid ncnnectinsuspended(int cause) { Lg.d(TAG, "Play services cnnectin suspended"); } 25

26 Lcatin Services API Enables r disables the my-lcatin layer mmap.setmylcatinenabled(true); While enabled and the lcatin is available, the my-lcatin layer cntinuusly draws an indicatin f a user's current lcatin and bearing, and displays UI cntrls that allw a user t interact with their lcatin In rder t use the my-lcatin-layer feature yu need t request permissin fr either ACCESS_COARSE_LOCATION r ACCESS_FINE_LOCATION 26

27 Lcatin Services API Enables r disables the my-lcatin buttn mmap.getuisettings().setmylcatinbuttnenabled(true) The my-lcatin buttn causes the camera t mve such that the user's lcatin is in the center f the map. If the buttn is enabled, it is nly shwn when the my-lcatin layer is enabled By default, the my-lcatin buttn is enabled 27

28 Lcatin Services API Get the best and mst recent lcatin f the device (may be null in cases when a lcatin is nt available) mlastknwnlcatin = LcatinServices.FusedLcatinApi.getLastLcatin(mGgleApiClient); Set the map's camera psitin t the current lcatin f the device and zm in if (mlastknwnlcatin!= null) { mmap.mvecamera(cameraupdatefactry.newlatlngzm( new LatLng(mLastKnwnLcatin.getLatitude(), mlastknwnlcatin.getlngitude()), DEFAULT_ZOOM)); } 28

29 Place Detectin API Get an estimate f the place where the device is currently lcated PendingResult<PlaceLikelihdBuffer> result = Places.PlaceDetectinApi.getCurrentPlace(mGgleApiClient, null); Generates a PlaceLikelihdBuffer based n device's last estimated lcatin Returned values may be btained by means f a netwrk lkup: results are a best guess and nt guaranteed t be crrect Requires ACCESS_FINE_LOCATION permissin Access t this methd is subject t quta restrictins 29

30 Place Detectin API Ppulate place infrmatin result.setresultcallback(new ResultCallback<PlaceLikelihdBuffer>() public vid nresult(@nnnull PlaceLikelihdBuffer likelyplaces) { mlikelyplacenames = new String[mMaxEntries]; fr (PlaceLikelihd placelikelihd : likelyplaces) { // Build a list f likely places t shw the user. Max 5. mlikelyplacenames[i] = (String) placelikelihd.getplace().getname(); } // Release the place likelihd buffer, t avid memry leaks. likelyplaces.release(); } }); 30

31 Setting an AlertDialg fr Users t Pick AlertDialg lets users t interact with the app AlertDialgdialg = new AlertDialg.Builder(this).setTitle("pick a place").setitems(mlikelyplacenames, listener).shw(); Syntax: use AlertDialg.Builder s methd setitems (CharSequence[] items, DialgInterface.OnClickListener listener) } Set a list f items t be displayed in the dialg as the cntent } Cde will be ntified f the selected item via the supplied listener } Implement the listener 31

32 Setting an AlertDialg fr Users t Pick Listener DialgInterface.OnClickListener listener = new DialgInterface.OnClickListener() public vid nclick(dialginterface dialg, int which) { // The "which" argument cntains the psitin f the selected item. LatLng markerlatlng = mlikelyplacelatlngs[which]; String markersnippet = mlikelyplaceaddresses[which];... // Add a marker fr the selected place, with an inf windw w/ infrmatin abut that place mmap.addmarker(new MarkerOptins().title(mLikelyPlaceNames[which]).psitin(markerLatLng).snippet(markerSnippet)); } }; // Psitin the map's camera at the lcatin f the marker. mmap.mvecamera(cameraupdatefactry.newlatlngzm(markerlatlng, DEFAULT_ZOOM)); 32

Andrid prgramming curse Data strage Sessin bjectives Internal Strage Intrductin By Võ Văn Hải Faculty f Infrmatin Technlgies Andrid prvides several ptins fr yu t save persistent applicatin data. The slutin

More information

Lab# 10: Embedded Applications and Location Tracking Applications

Lab# 10: Embedded Applications and Location Tracking Applications Department f Infrmatin Technlgy Faculty f Cmputing and Infrmatin Technlgy King Abdulaziz University Mbile Applicatin Develpment CPIT490 Lab# 10: Embedded Applicatins and Lcatin Tracking Applicatins Objectives:

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins

VMware AirWatch SDK Plugin for Apache Cordova Instructions Add AirWatch Functionality to Enterprise Applicataions with SDK Plugins VMware AirWatch SDK Plugin fr Apache Crdva Instructins Add AirWatch Functinality t Enterprise Applicatains with SDK Plugins v1.2 Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

CS5530 Mobile/Wireless Systems Android UI

CS5530 Mobile/Wireless Systems Android UI Mbile/Wireless Systems Andrid UI Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs cat annunce.txt_ Assignment 2 will be psted sn Due after midterm I will be

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Information about the ACC Education App Featuring ACCSAP 9

Information about the ACC Education App Featuring ACCSAP 9 Infrmatin abut the ACC Educatin App Featuring ACCSAP 9 Key Features: This app is designed t be a study tl fr select educatinal prducts. It des nt include all features and functinality f the nline prtin

More information

Asset Panda Web Application Release 12.02

Asset Panda Web Application Release 12.02 Asset Panda Web Applicatin Release 12.02 User Cnfiguratin Permissins Several changes have been made t this page including the fllwing. Page Design The layut has been changed s that all Edit and Misc Cnfiguratins

More information

Andrid prgramming curse UI Overview User Interface By Võ Văn Hải Faculty f Infrmatin Technlgies All user interface elements in an Andrid app are built using View and ViewGrup bjects. A View is an bject

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an to

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an  to Overview Welcme t Vercity, the ESS web management system fr rdering backgrund screens and managing the results. Frm any cmputer, yu can lg in and access yur applicants securely, rder a new reprt, and even

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

User Guide. Avigilon Control Center Mobile Version 2.2 for Android

User Guide. Avigilon Control Center Mobile Version 2.2 for Android User Guide Avigiln Cntrl Center Mbile Versin 2.2 fr Andrid 2011-2015, Avigiln Crpratin. All rights reserved. Unless expressly granted in writing, n license is granted with respect t any cpyright, industrial

More information

Class CustomActivity... 2 Field Detail Constructor Detail Method Detail... 13

Class CustomActivity... 2 Field Detail Constructor Detail Method Detail... 13 Cntents Class CustmActivity... 2 Field Detail... 3 Cnstructr Detail... 3 Methd Detail... 3 Class Data... 5 Field Detail... 5 Cnstructr Detail... 6 Methd Detail... 6 Class Live... 7 Cnstructr Detail...

More information

The following screens show some of the extra features provided by the Extended Order Entry screen:

The following screens show some of the extra features provided by the Extended Order Entry screen: SmartFinder Orders Extended Order Entry Extended Order Entry is an enhanced replacement fr the Sage Order Entry screen. It prvides yu with mre functinality while entering an rder, and fast access t rder,

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects January 29, 2018 - Versin 9.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

MOS Access 2013 Quick Reference

MOS Access 2013 Quick Reference MOS Access 2013 Quick Reference Exam 77-424: MOS Access 2013 Objectives http://www.micrsft.cm/learning/en-us/exam.aspx?id=77-424 Create and Manage a Database Create a New Database This bjective may include

More information

Pexip Infinity User Guide

Pexip Infinity User Guide Pexip Infinity User Guide Welcme t yur Virtual Meeting Rm Yur Virtual Meeting Rm (VMR) is a persnal space that is always available fr yu t meet with thers ver vide r audi, and share presentatins. Yu can

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 22, 2017 - Versin 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Outlook Web Application (OWA) Basic Training

Outlook Web Application (OWA) Basic Training Outlk Web Applicatin (OWA) Basic Training Requirements t use OWA Full Versin: Yu must use at least versin 7 f Internet Explrer, Safari n Mac, and Firefx 3.X. (Ggle Chrme r Internet Explrer versin 6, yu

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

WordPress Overview for School Webmasters

WordPress Overview for School Webmasters WrdPress Overview fr Schl Webmasters Cntents 1. Rle f the Schl Webmaster... 2 2. Rle f the District Webmaster... 2 3. Schl Website Standards... 3 Header... 3 Fter... 3 Pages... 4 Sites... 5 4. Hw T...

More information

Using MeetingSquared as an Administrator

Using MeetingSquared as an Administrator Using MeetingSquared as an Administratr Use the MeetingSquared web interface t set up and manage yur meeting. MeetingSquared is part f SharePint within Office 365 s yu use a web brwser t lg in using yur

More information

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu

BANNER BASICS. What is Banner? Banner Environment. My Banner. Pages. What is it? What form do you use? Steps to create a personal menu BANNER BASICS What is Banner? Definitin Prduct Mdules Self-Service-Fish R Net Lg int Banner Banner Envirnment The Main Windw My Banner Pages What is it? What frm d yu use? Steps t create a persnal menu

More information

DUO LINK 4 APP User Manual V- A PNY Technologies, Inc. 1. PNY Technologies, Inc. 34.

DUO LINK 4 APP User Manual V- A PNY Technologies, Inc. 1. PNY Technologies, Inc. 34. 34. 1. Table f Cntents Page 1. Prduct Descriptin 4 2. System Requirements 5 3. DUO LINK App Installatin 5 4. DUO LINK App Mving Screens 7 5. File Management 5.1. Types f views 8 5.2. Select Files t Cpy,

More information

Trimble Survey GNSS Firmware Version 4.81 (July 2013)

Trimble Survey GNSS Firmware Version 4.81 (July 2013) Handheld Integrated Mdular RELEASE NOTES TRIMBLE SURVEY GNSS FIRMWARE Trimble Survey GNSS Firmware Versin 4.81 (July 2013) Requirements This firmware versin includes imprvements t the Survey Receiver firmware.

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

BMC Remedyforce Integration with Bomgar Remote Support

BMC Remedyforce Integration with Bomgar Remote Support BMC Remedyfrce Integratin with Bmgar Remte Supprt 2017 Bmgar Crpratin. All rights reserved wrldwide. BOMGAR and the BOMGAR lg are trademarks f Bmgar Crpratin; ther trademarks shwn are the prperty f their

More information

Creating Relativity Dynamic Objects

Creating Relativity Dynamic Objects Creating Relativity Dynamic Objects Nvember 28, 2017 - Versin 9.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

OUTLOOK 2016 TIPS. Outlook 2016 Tips

OUTLOOK 2016 TIPS. Outlook 2016 Tips Outlk 2016 Tips Tpics cvered: 1. Respnd t messages inline by default... 1 2. Custmize yur view f Outlk... 1 3. Send a Blind Carbn Cpy... 4 4. Create Rules... 4 6. Delegate access t yur calendar... 6 7.

More information

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

Managing Your Access To The Open Banking Directory How To Guide

Managing Your Access To The Open Banking Directory How To Guide Managing Yur Access T The Open Banking Directry Hw T Guide Date: June 2018 Versin: v2.0 Classificatin: PUBLIC OPEN BANKING LIMITED 2018 Page 1 f 32 Cntents 1. Intrductin 3 2. Signing Up 4 3. Lgging In

More information

Copy your Course: Export and Import

Copy your Course: Export and Import Center f elearning The exprt curse feature creates a ZIP file f yur curse cntent yu will imprt t yur new curse. Exprt packages are dwnladed and imprted as cmpressed ZIP files. D nt unzip an exprt package

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation

Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installation Kaltura MediaSpace TM Enterprise 2.0 Requirements and Installatin Updated Aug 30, 2011 Server Requirements Hardware The hardware requirements are mstly dependent n the number f cncurrent users yu expect

More information

Graduate Application Review Process Documentation

Graduate Application Review Process Documentation Graduate Applicatin Review Prcess Cntents System Cnfiguratin... 1 Cgns... 1 Banner Dcument Management (ApplicatinXtender)... 2 Banner Wrkflw... 4 Navigatin... 5 Cgns... 5 IBM Cgns Sftware Welcme Page...

More information

Gemini Intercom Quick Start Guide

Gemini Intercom Quick Start Guide Gemini Intercm Quick Start Guide 2 Quick Start Guide Cntents Cntents... 1 Overview... 3 First Step unpack and inspect... 3 Netwrk plan and IP addresses... 4 Management PC... 5 Install Sftware... 6 Cnfigure

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

IBM Design Room Live! release notes

IBM Design Room Live! release notes IBM Design Rm Live! release ntes These release ntes prvide sprint-wise release infrmatin abut IBM Design Rm Live!, such as the new features, fixes, limitatins, and any specific requirements. The sprint

More information

Automatic imposition version 5

Automatic imposition version 5 Autmatic impsitin v.5 Page 1/9 Autmatic impsitin versin 5 Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A3, A4, A5 r US Letter page

More information

IAB MRAID 2 TEST AD: RESIZE WITH ERRORS AD. Resize with Errors Ad. URL for this Creative. Goal of Ad. This Creative Tests:

IAB MRAID 2 TEST AD: RESIZE WITH ERRORS AD. Resize with Errors Ad. URL for this Creative. Goal of Ad. This Creative Tests: Resize with Errrs Ad URL fr this Creative http://mraid.iab.net/cmpliance/units/resize-err.txt Gal f Ad This ad will test that the cntainer triggers apprpriate errr handling when resize-related methds and

More information

CLIC ADMIN USER S GUIDE

CLIC ADMIN USER S GUIDE With CLiC (Classrm In Cntext), teaching and classrm instructin becmes interactive, persnalized, and fcused. This digital-based curriculum, designed by Gale, is flexible allwing teachers t make their classrm

More information

Towne Information Systems, Inc. Inter-Office Correspondence

Towne Information Systems, Inc. Inter-Office Correspondence Twne Infrmatin Systems, Inc. Inter-Office Crrespndence Date: 2/25/2019 Frm: Bill Salyers Subject: Getting Started with O365 By nw yu shuld have read abut ur mve t Micrsft O365 a new versin f Micrsft Office.

More information

Installing and using QGIS

Installing and using QGIS Land Accunting Exercise Part 1 Installing QGIS 1 Installing and using QGIS Reginal Expert Wrkshp n Land Accunting, UNESCAP, 09-2017 UNESCAP - Reginal Expert Wrkshp n Land Accunting, Bangkk, Thailand, Sep.

More information

softpanel generic installation and operation instructions for nanobox products

softpanel generic installation and operation instructions for nanobox products 1 f 10 System Requirements... 3 Installatin... 3 Java... 3 RxTx Serial Drivers... 3 Granting a user permissin t pen a COM Prt in Mac OS X... 3 USB t Serial Drivers... 4 Mac OS X 10.6 Snw Lepard... 4 Operatin...

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o Extended Vendrs Extended Vendrs is an enhanced replacement fr the Sage Vendrs frm. It prvides yu with mre infrmatin while entering a PO and fast access t additinal PO, Vendr, and Item infrmatin. Extended

More information

CREATING A DONOR ACCOUNT

CREATING A DONOR ACCOUNT CREATING A DONOR ACCOUNT An Online Giving Accunt shuld be created t have the ability t set-up recurring dnatins, pledges and be able t view and print histry. Setting up an accunt will als allw yu t set-up

More information

CS5530 Mobile/Wireless Systems Android Bluetooth Interface

CS5530 Mobile/Wireless Systems Android Bluetooth Interface Mbile/Wireless Systems Andrid Bluetth Interface Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Bluetth Cmmunicatin Bluetth-enabled devices must first cmplete

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup Cncrdance and IPRO Camera Buttn / Backwards DB Link Setup When linking Cncrdance and IPRO, yu will need t update the DDEIVIEW.CPL file t establish the camera buttn. Setting up the camera buttn feature

More information

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal PAY EQUITY HEARINGS TRIBUNAL Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Pay Equity Hearings Tribunal This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers Page 1 f 18 HW4 Sftware versin 3 Device Manager and Data Lgging LOG-RC Series Data Lggers 2011; Page 2 f 18 Table f cntents 1 ORGANIZATION OF THE HW4 MANUALS... 3 2 OVERVIEW... 4 3 INITIAL SETUP... 4 3.1

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

AvePoint Perimeter Pro 1.9

AvePoint Perimeter Pro 1.9 G09 AvePint Perimeter Pr 1.9 Secured Share User Guide Issued December 2017 Table f Cntents What s New in this Guide... 4 Overview... 5 Internal Users... 6 Site Cllectin Administratrs... 7 External Prtal

More information

Model WM100. Product Manual

Model WM100. Product Manual Mdel WM100 Prduct Manual Table f Cntents Sectin Page 1. Hardware... 3 2. Sftware... 4 3. Features... 5 4. Installatin... 6 5. App Devices... 9 6. App Rms... 12 7. App Scenes... 14 8. App Setup... 18 Cntents

More information

Single File Upload Guide

Single File Upload Guide Single File Uplad Guide August 15, 2018 Versin 9.6.134.78 Single File Uplad Guide 1 Fr the mst recent versin f this dcument, visit ur dcumentatin website. Single File Uplad Guide 2 Table f Cntents 1 Single

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

More information

Class Roster. Curriculum Class Roster Step-By-Step Procedure

Class Roster. Curriculum Class Roster Step-By-Step Procedure Imprtant Infrmatin The page prvides faculty and staff a list f students wh are enrlled and waitlisted in a particular class. Instructrs are given access t each class fr which they are listed as an instructr,

More information

USER GUIDE. Thanks for purchasing the igate! You ll need to follow these five Configuration Steps to get your igate up and running:

USER GUIDE. Thanks for purchasing the igate! You ll need to follow these five Configuration Steps to get your igate up and running: USER GUIDE Thanks fr purchasing the igate! Yu ll need t fllw these five Cnfiguratin Steps t get yur igate up and running: 1. Cnfigure Yur Hardware 2. Cnfigure Yur Cmputer 3. Cnfigure Yur Internet Cnnectin

More information

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved.

Renewal Reminder. User Guide. Copyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder User Guide Cpyright 2009 Data Springs Inc. All rights reserved. Renewal Reminder 2.5 User Guide Table f cntents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 3 ADDING RENEWAL REMINDER

More information

Populate and Extract Data from Your Database

Populate and Extract Data from Your Database Ppulate and Extract Data frm Yur Database 1. Overview In this lab, yu will: 1. Check/revise yur data mdel and/r marketing material (hme page cntent) frm last week's lab. Yu will wrk with tw classmates

More information

Second Assignment Tutorial lecture

Second Assignment Tutorial lecture Secnd Assignment Tutrial lecture INF5040 (Open Distributed Systems) Faraz German (farazg@ulrik.ui.n) Department f Infrmatics University f Osl Octber 17, 2016 Grup Cmmunicatin System Services prvided by

More information

Client Configurations

Client Configurations Email Client Cnfiguratins Chse ne f the links belw fr yur particular email client. Easy t use instructins will help yu change the settings n yur email client t ur settings. Recmmended Email Settings Incming

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide Quick Start Guide This guide will explain the prcess f installing & using the DemPad Designer sftware fr PC, which allws yu t create a custmised Graphical User Interface (GUI) fr an iphne / ipad & embed

More information

DocAve 6 Deployment Manager

DocAve 6 Deployment Manager DcAve 6 Deplyment Manager User Guide Service Pack 3 Revisin I Issued August 2013 1 Table f Cntents Abut Deplyment Manager... 5 Cmplementary Prducts... 5 Submitting Dcumentatin Feedback t AvePint... 5 Befre

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use Recmmended Minimum Requirements fr Cisc Meeting Applicatin Web RTC Use Fr the best experience the fllwing requirements and recmmendatins shuld be fllwed. Requirements: External USB web camera capable f

More information

Guide to Recording and Adding Audio to PowerPoint

Guide to Recording and Adding Audio to PowerPoint Guide t Recrding and Adding Audi t PwerPint There are three sectins t this guide. 1. The first is fr users f PwerPint. 2. The secnd is fr users f Adbe Presenter fr PwerPint. 3. The third sectin is relevant

More information

User Guide Automate Ops Console for Insite 1.6

User Guide Automate Ops Console for Insite 1.6 User Guide Autmate Ops Cnsle fr Insite 1.6 Cpyright Terms and Cnditins The cntent in this dcument is prtected by the Cpyright Laws f the United States f America and ther cuntries wrldwide. The unauthrized

More information

DS-5 Release Notes. (build 472 dated 2010/04/28 08:33:48 GMT)

DS-5 Release Notes. (build 472 dated 2010/04/28 08:33:48 GMT) DS-5 Release Ntes (build 472 dated 2010/04/28 08:33:48 GMT) Intrductin This is a trial release f Keil Develpment Studi 5 (DS-5). DS-5 cntains tls fr building and debugging C/C++ and ARM assembly language

More information

Able2Extract Server 3.0. User Guide

Able2Extract Server 3.0. User Guide 3.0 User Guide TABLE OF CONTENTS: 1 INTRODUCTION... 5 1.1 System Requirements... 5 2 BEFORE INSTALLING ABLE2EXTRACT SERVER... 6 2.1 Required Sftware Updates... 6 2.2 Additinal Requirements fr Windws Vista...

More information

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS T ABLE OF C ONTENTS Table f Cntents... 1 Intrductin... 2 Target Audience... 2 Objectives... 2 Other Resurces... 2 Assumptins... 2 Verify

More information

Quick Guide on implementing SQL Manage for SAP Business One

Quick Guide on implementing SQL Manage for SAP Business One Quick Guide n implementing SQL Manage fr SAP Business One The purpse f this dcument is t guide yu thrugh the quick prcess f implementing SQL Manage fr SAP B1 SQL Server databases. SQL Manage is a ttal

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board ONTARIO LABOUR RELATIONS BOARD Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Ontari Labur Relatins Bard This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

VMware Horizon Mirage Web Manager Guide v4.2

VMware Horizon Mirage Web Manager Guide v4.2 VMware Hrizn Mirage Web Manager Guide v4.2 June 2013 Cntents Overview... 3 Installatin Ntes... 3 Lgging In... 3 Perfrming a Quick Search... 4 Perfrming an Advanced Search... 5 Selecting a User-Device...

More information

An Introduction to Windows 7

An Introduction to Windows 7 2011 An Intrductin t Windws 7 Lena Arena Prject Crdinatr, DER NSW Sydney Regin Ph: 9582 2851 Carmelina.arena@det.nsw.edu.au Table f Cntents Windws 7 Desktp - The Elements f the Windws 7 Desktp... 2 Mre

More information

Guide to getting started in J2ME for the Motorola A780 phone

Guide to getting started in J2ME for the Motorola A780 phone Guide t getting started in J2ME fr the Mtrla A780 phne This guide will take yu thrugh setting up a build envirnment fr J2ME in Windws and in writing a few sample applicatins fr the A780 phne. There are

More information

Reference Guide. Service Pack 3 Cumulative Update 2. Revision J Issued October DocAve 6: Control Panel

Reference Guide. Service Pack 3 Cumulative Update 2. Revision J Issued October DocAve 6: Control Panel DcAve 6 Cntrl Panel Reference Guide Service Pack 3 Cumulative Update 2 Revisin J Issued Octber 2013 DcAve 6: Cntrl Panel 1 Table f Cntents Abut Cntrl Panel... 6 Submitting Dcumentatin Feedback t AvePint...

More information

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Advanced and Customized Net Conference Powered by Cisco WebEx Technology

Advanced and Customized Net Conference Powered by Cisco WebEx Technology User Guide: Advanced and Custmized Net Cnference Pwered by Cisc WebEx Technlgy Prductivity Tls USER GUIDE Verizn Net Cnferencing h l M ti C t Advanced and Custmized Net Cnference Pwered by Cisc WebEx Technlgy

More information

How to Share Your Google Calendar

How to Share Your Google Calendar Hw t Share Yur Ggle Calendar Edited by Travis Deruin, Tm Viren, Eric, Wrkman and 16 thers 0 Article EditDiscuss Ggle Calendar can d mre than just rganize yur persnal schedule. Yu can als use it t share

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

MOS PowerPoint 2013 Quick Reference

MOS PowerPoint 2013 Quick Reference MOS PwerPint 2013 Quick Reference Exam 77-422: MOS PwerPint 2013 Objectives http://www.micrsft.cm/learning/en-us/exam.aspx?id=77-422 YuTube Vides: http://www.yutube.cm/user/3mit1/playlists Create and Manage

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

Webcast Event Setup Guide. Release 4.9

Webcast Event Setup Guide. Release 4.9 Webcast Event Setup Guide Dcument Webcast Event Setup Guide Release 4.9 Revisin Date July 30, 2018 Cntents Navigating the Platfrm... 3 Event Settings... 4 Registratin Frm... 5 Landing Page Cntent... 6

More information

Paraben s Phone Recovery Stick

Paraben s Phone Recovery Stick Paraben s Phne Recvery Stick v. 3.0 User manual Cntents Abut Phne Recvery Stick... 3 What s new!... 3 System Requirements... 3 Applicatin User Interface... 4 Understanding the User Interface... 4 Main

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager A U G U S T 2 0 1 7 V1 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites...

More information

How to Start a New Prezi & Edit It

How to Start a New Prezi & Edit It Hw t Start a New Prezi & Edit It Lg int accunt Click n Select a template. Each template cntains frames, which are used t grup like items, and are similar t slides in PwerPint. The rder in which yur presentatin/stry

More information

UNIFIED MEETING 5 DOWNLOAD AND SETUP

UNIFIED MEETING 5 DOWNLOAD AND SETUP UNIFIED MEETING 5 W I N D O W S U S E R G U I D E Unified Meeting 5, ur meeting and cllabratin applicatin enhances the way yu cmmunicate by making meetings cnvenient and easy t manage. It imprves yur meeting

More information