Caspio Map Mashup v7 Developer Reference

Size: px
Start display at page:

Download "Caspio Map Mashup v7 Developer Reference"

Transcription

1 1. DataPage Setup Caspio Map Mashup v7 Developer Reference Configure your DataPage and map settings using the DataPage Wizard in Caspio Bridge Enable Parameters On the first screen of the DataPage wizard, check Enable Advanced Options and Enable Parameters Define Your Fields on the Results Page Insert an HTML Block at the bottom of your DataPage elements in the "Configure Results Page Fields" section of the DataPage wizard. Make sure no fields from your table appear below the HTML Block. Then copy and paste the following code into the HTML Block: <span <!-- Begin of Map Fields Section --> <div <div <div <div <!-- End of Map Fields Section --> <!-- Begin of Icon Conditions Section --> <!-- End of Icon Conditions Section --> <script type="text/javascript">try{ mapenvironment.adddpitemmapsettings( ); }catch(e){}</script> In the code, replace the field parameters in red with the corresponding field names from your table: Address Fields: Replace with the field names in your table for address, city, state, and zip. If your table contains a complete address in a single field, use only [@field:address] and remove [@field:city], [@field:state] [@field:zip] from the code. Description Field: If you have a field in your table that contains descriptive information for each record, replace [@field:description] with the name of the field. This text will appear in the bubble that pops up over the selected point on the map. If no description is selected, the default will be the entire address. Latitude and Longitude Fields: If your table is geocoded, replace [@field:latitude] and [@field:longitude] with the field names in your table. If your table is not geocoded, you can remove these two lines from the code: <div id="latitude:[@field:pk_id]:[@cbappkey]" style="display:none">[@field:latitude]</div> <div id="longitude:[@field:pk_id]:[@cbappkey]" style="display:none">[@field:longitude]</div> In this case geocoding operation will be performed for each record. Geocoding also will be performed if you table has coordinates fields, but they are 2012 Caspio, Inc. All Rights Reserved. Page 1 Caspio Map Mashup v7 Developer Reference 2

2 1.3. Display Map on Details Page (Optional) To display the map on the Details Page of each record: Insert an HTML Block at the bottom of your DataPage elements in the "Configure Details Page Fields" section of the DataPage wizard. Then copy and paste the following code into the HTML Block: <!-- Begin of Map Fields Section --> <div <div <div <div <!-- End of Map Fields Section --> <!-- Begin of Icon Conditions Section --> <!-- End of Icon Conditions Section --> <script type="text/javascript">try{ mapenvironment. SetDetailsMapSettings( ); }catch(e){}</script> Replace the field parameters in red with the corresponding field names from your table, as explained in Section Hide Map on Details Page If you don t want the map to be displayed on the Details page, insert Header/Footer in the "Configure Details Page Fields" screen in the DataPage wizard. Then copy and paste the following code into the Header: <script 2012 Caspio, Inc. All Rights Reserved. Page 2 Caspio Map Mashup v7 Developer Reference 2

3 2. Map Configuration File Instead of inserting the same configuration file on every page, you can create a Map Mashup configuration file and deploy it on your server Create a configuration file using the following code below and save as custom_map.js. The location of this file will be referenced in Deploy the Map as URLToYourMapConfigurationFile. /* Begin of Map Settings Section */ var mapsettings = { "maptype": "Y", "mapview": "R", "mapwidth": "800", "mapheight": "400", "mapcssstyle": "", "useautozoom": "Y", "zoomlevelresult": "10", "zoomleveldetails": "6", "zoomlevelmapit": "13", "bubbleopentype": "2", "disablescrollwheel": "N", "showtrafficlayer": "N", "plotmarkers": "Y", "homeposition": "Mountain View, CA, USA", "apikey": "" }; /* End of Map Settings Section */ Map Settings Legend Parameter Description Allowed values maptype mapview Defines which map API to use. Only Google maps are supported in this version. Defines the default map view (Road, Satellite, Hybrid, Terrain). G or GOOGLE mapwidth Map Container s width in pixels Integer > 0 mapheight Map Container s height in pixels Integer > 0 mapcssstyle useautozoom Map Container s CSS style. Use it if you want to set specific style for container. Defines whether the map should automatically Y or N adjust zoom level to location zoomlevelresult Zoom level for Results Page 1 16 zoomleveldetails Zoom level for Details Page 1 16 zoomlevelmapit Zoom level for Map It functionality 1 16 bubbleopentype Defines the event that will open InfoWindow with description on marker disablescrollwheel Shows whether map zooming should react on Y or N mouse wheel showtrafficlayer Shows whether traffic and accidents will be shown Y or N 'R', 'ROAD', 'ROADMAP' for single road map 'S', 'SAT', 'SATELLITE' for satellite map 'H', 'HYB', 'HYBRID' for hybrid (road + satellite) map 'T', 'TERR', 'TERRAIN' for terrain map The URL for the Cascading Style Sheet 0 for no InfoWindow 1 for mouseover 2 for mouse 2012 Caspio, Inc. All Rights Reserved. Page 3 Caspio Map Mashup v7 Developer Reference 2

4 plotmarkers homeposition apikey on map Shows whether markers should be plotted right after DP is loaded. Not applicable to Details & Direct To Details pages. The default map position Paste your Google Maps API Key (optional) Y or N 2.2. Copy and paste the following code at the end of your custom_map.js configuration file. This section defines the plotting and icon settings. /*** DATAPAGE SETTINGS ***/ var dpsettings = new mapdatapagesettings('your_dp_appkey'); /* Begin of DataPage Settings Section */ dpsettings.defaulticon = ""; dpsettings.defaulticonwidth = ""; dpsettings.defaulticonheight = ""; dpsettings.mapitenabled = "Y"; dpsettings.mapitlabel = "Map it"; dpsettings.filterneed = "Y"; dpsettings.filterrowsize = "5"; /* End of DataPage Settings Section */ /* Begin of DataPage Icon Condition Section */ /* End of DataPage Icon Condition Section */ mapenvironment.adddatapagemapsettings(dpsettings); /*** End of DATAPAGE SETTINGS ***/ Configuration File Setting: Parameter Description Allowed values DefaultIcon Defines the default marker icon 1 10 or custom URL DefaultIconWidth Defines the default marker icon width in pixels Integer > 0 DefaultIconHeight Defines the default marker icon width in pixels Integer > 0 MapItEnabled Defines if Map It functionality is enabled Y or N MapItLabel Map It link label Any custom text FilterNeed Defines whether filtering should be applied to markers (only if Y or N you have icon criteria configured, see Customizations section) FilterRowSize Defines the number of filter items in a row Integer. Default is Replace the red text YOUR_DP_APPKEY by AppKey of your DataPage. In order to get the DataPage AppKey select the corresponding DataPage inside your Caspio Bridge account and click the Properties button. 2.4 Save changes in the configuration file Save the changes in your configuration file (custom_map.js) and upload it to your web server. You will need the URL to set up the Web 2012 Caspio, Inc. All Rights Reserved. Page 4 Caspio Map Mashup v7 Developer Reference 2

5 3. Web Page Setup You will need access to your web page source to deploy the DataPage and map Deploy the DataPage To deploy your DataPage, select the DataPage and click the Deploy button. Copy the deploy code to your clipboard and click the "Deploy" button. Paste the deploy code on your web page where you want it to appear Deploy the Map To deploy the Map, use the URLToYourMapConfigurationFile or MapConfigurationSettings as described in Section Using URLToYourMapConfigurationFile Paste the deploy code to the end of <head> section of your webpage: <script type="text/javascript" src="//d23b32zmhbr2ct.cloudfront.net/mashup/script/caspio_mashups_v7.js"></script> <script type="text/javascript" src="urltoyourmapconfigurationfile"></script> Replace URLToYourMapConfigurationFile by URL to your map configuration file Using MapConfigurationSettings Paste the deploy code to the end of <head> section of your webpage: <script type="text/javascript" src="//d23b32zmhbr2ct.cloudfront.net/mashup/script/caspio_mashups_v7.js"></script> <script type="text/javascript">mapconfigurationsettings</script> Replace MapConfigurationSettings with the content of map configuration file To initially display a map without markers, paste the following code before all DataPages: <script type="text/javascript">mapenvironment.preloademptymap();</script> NOTE: Hide map on Search (Section 4.4) and Hide map on Details (Section 1.4) will not work if you add this code to your 2012 Caspio, Inc. All Rights Reserved. Page 5 Caspio Map Mashup v7 Developer Reference 2

6 4. Customizations (Optional) 4.1. Ability to plot different data with different pins 1. You will need to add additional section in the corresponding DataPage HTML block (which must be already present on DataPage (see Section and Section 1.3.1). Edit your DataPage and go to the "Configure Results Page Fields" wizard screen, select the HTML block with the Map Mashup settings and add the following code between the «Begin of Icon Conditions Section» and «End of Icon Conditions Section» comment lines: <!-- Begin of Icon Conditions Section --> <div <!-- End of Icon Conditions Section --> 2. Replace CheckConditionField with the field name which its value will determine what icon should be plotted on map. 3. Repeat this for every field you want to use as conditions 4. If you have Display Map on Details Page (see Section 1.3) you must repeat the steps for HTML Block at Configure Details Page Fields screen. 5. You also need to update your map configuration file. Open the map configuration file deployed on your server (see Section 2) (or map configuration code see Section 3 ) and add the following code: /* Begin of DataPage Icon Condition Section */ /* Condition begin */ var iconcond = new mapiconcondition(); iconcond.name = "Name" iconcond. Operators = [ { Action: "CompareOperator", FieldToCompare: "CompareField", ValueToCompare: "CompareValue", ComparisonStyle: "ComparisonStyle" } ]; iconcond.mapicon = "ResultMapIcon"; iconcond.mapiconwidth = "Width"; iconcond.mapiconheight = "Height"; iconcond.visible = "Visible"; dpsettings.addcondition( iconcond ); /* Condition end */ /* End of DataPage Icon Condition Section */ 6. You can add as many items to Operators array, as you need, using JSON format. 7. Replace all red marked text in code above by following values: Name a unique name for your 2012 Caspio, Inc. All Rights Reserved. Page 6 Caspio Map Mashup v7 Developer Reference 2

7 CompareOperator replace by one of following allowed numeric values (1-9): Value Operation meaning Is second operand needed 1 Equal Yes 2 NotEqual Yes 3 GreaterThan Yes 4 GreaterThanOrEqual Yes 5 LessThan Yes 6 LessThanOrEqual Yes 7 Contains Yes 8 IsBlank No 9 IsNotBlank No By default the CompareOperator will be «1» (Equal) if it is left blank. CompareField name of your criteria field CompareValue comparison value For example if you want to mark all records with CheckConditionField greater than or equal to «100», you must replace CompareOperator with value «4» (GreaterThanOrEqual) and replace CompareValue with value «100». In case of IsBlank or IsNotBlank («8» and «9») comparison operators the CompareValue can be empty string since it will be anyway ignored. ComparisonStyle type of comparison operation from following list (you can use either numeric or mnemonic values): Numeric comparison type name Mnemonic comparison type name Description 1 STRING Compare as strings TEXT(255), TEXT(64000), FILE or YES/NO with particular localized value like 'Yes' or 'No' 2 NUMERIC Compare as numbers NUMBER, AUTONUMBER or TEXT with correct(!) numeric data 3 DATE/TIME Compare as dates DATE/TIME or TEXT with correct(!) format of date ResultMapIcon either numeric Caspio icon number (1-10) or URL for your custom pin icon in GIF or PNG format. If this value is set to empty string (""), then the default Caspio icon will be 2012 Caspio, Inc. All Rights Reserved. Page 7 Caspio Map Mashup v7 Developer Reference 2

8 Width if the ResultMapIcon is custom image with not standard size, here you can place width of this image in pixels. If this value is set to empty string (""), then the default width will be used. Height - if the ResultMapIcon is custom image with not standard size, here you can place height of this image in pixels. If this value is set to empty string (""), the default width will be used. Visible set this value to Y if you want values that matched the criteria to be visible by default. Set to N to hide them by default. 8. Repeat the code section between «Condition begin» and «Condition end» comment lines for each icon condition which you want use in icon plotting functionality. Replace all red marked text for each new condition in the same way as described above. EXAMPLE: If you want plot on map records with following conditions: records with some example numeric field «Price» less than or equal to 100 by Caspio icon «1» records with some example numeric field «Price» greater than 100 but less than 500 by Caspio icon «2» records with some example numeric field «Price» greater than or equal to 500 by custom icon « with size 20x30 You must have the following code in the DataPage Icon Condition Section of map configuration file (this is just an example): /* Begin of DataPage Icon Condition Section */ /* Condition begin */ var iconcond1 = new mapiconcondition(); iconcond1.name = "Less Than Or Equal 100"; iconcond1. Operators = [ { Action: "6", FieldToCompare: "Price", ValueToCompare: "100", ComparisonStyle: "2" } ]; iconcond1.mapicon = "1"; iconcond1.mapiconwidth = ""; iconcond1.mapiconheight = ""; iconcond1.visible = "Y"; dpsettings.addcondition( iconcond1 ); /* Condition end */ /* Condition begin */ var iconcond2 = new mapiconcondition(); iconcond2.name = "Between 100 and 500"; iconcond2. Operators = [ { Action: "3", FieldToCompare: "Price", ValueToCompare: "100", ComparisonStyle: "2" }, { Action: "5", FieldToCompare: "Price", ValueToCompare: 2012 Caspio, Inc. All Rights Reserved. Page 8 Caspio Map Mashup v7 Developer Reference 2

9 ComparisonStyle: "2" } ]; iconcond2.mapicon = "2"; iconcond2.mapiconwidth = ""; iconcond2.mapiconheight = ""; iconcond2.visible = "Y"; dpsettings.addcondition( iconcond2 ); /* Condition end */ /* Condition begin */ var iconcond3 = new mapiconcondition(); iconcond3.name = "Greater than 500"; iconcond3. Operators = [ { Action: "4", FieldToCompare: "Price", ValueToCompare: "500", ComparisonStyle: "2" } ]; iconcond3.mapicon = " iconcond3.mapiconwidth = "20"; iconcond3.mapiconheight = "30"; iconcond3.visible = "Y"; dpsettings.addcondition( iconcond3 ); /* Condition end */ /* End of DataPage Icon Condition Section */ 4.2. Show/Hide plotted markers on map If you need to show/hide markers of particular DataPage regarding to state of particular checkbox control you must make following: 1. Setup the first DataPage for Map Mashup using as it is described above. 2. If you want to draw show/hide checkboxes above or below each DataPage on screen, then go to the Configure Result Page Fields screen, create Header/Footer and add to Header or Footer of DataPage the following code: <div><input type="checkbox" checked="checked" onkeyup="mapenvironment.togglemarkersvisible(this.checked, '[@cbappkey]');" onclick="mapenvironment.togglemarkersvisible(this.checked, '[@cbappkey]');" /> Show Markers</div> 3. Replace the Show Markers text by text which will appear next to show/hide DataPage markers checkbox. 4. Repeat steps 1-3 above for all other DataPages which will be deployed on one page and must have Show/Hide functionality. For each DataPage you can set its own text near the show/hide markers checkbox. 5. Deploy DataPages Map Positioning The default map displays right justified above your DataPage. If you would like to change the location, use the <div> tag as shown below: <div 2012 Caspio, Inc. All Rights Reserved. Page 9 Caspio Map Mashup v7 Developer Reference 2

10 4.4. Ability to disable map loading on Search Form. To disable Map (and save load time & internet traffic) on Search Form follow these steps: 1. Add Header/Footer to the Search form on Configure Search Fields in Datapage Wizard 2. Paste this code to the Header: <script type="text/javascript">mapsettings.hideonsearch='y';</script> Note, that if you configured empty map to be preloaded before datapage, it will be preloaded before Search Form Using MarkerClusterer MarkerClusterer is a tool that simplifies your data visualization by consolidating nearby data on a map in an aggregate form. Click here to see an example. Add the following code before map deployment script (which is described in Section 3.2): <script type="text/javascript" src="//google-maps-utility-libraryv3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer_compiled.js"></script> Use the code below for MarkerClusterer capabilities: Using URLToYourMapConfigurationFile <script type="text/javascript" src="//google-maps-utility-libraryv3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer_compiled.js"></script> <script type="text/javascript" src="//d23b32zmhbr2ct.cloudfront.net/mashup/script/caspio_mashups_v7.js"></script> <script type="text/javascript" src="urltoyourmapconfigurationfile"></script> Using MapConfigurationSettings <script type="text/javascript" src="//google-maps-utility-libraryv3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer_ compiled.js"></script> <script type="text/javascript" src="//d23b32zmhbr2ct.cloudfront.net/mashup/script/caspio_mashups_v7.js"></script> <script type="text/javascript"> MapConfigurationSettings 2012 Caspio, Inc. All Rights Reserved. Page 10 Caspio Map Mashup v7 Developer Reference 2

Help Documentation. Copyright 2007 WebAssist.com Corporation All rights reserved.

Help Documentation. Copyright 2007 WebAssist.com Corporation All rights reserved. Help Documentation Copyright 2007 WebAssist.com Corporation All rights reserved. Using Pro Maps for Google This wizard adds a Pro Map for Google to your web page, allowing you to configure and specify

More information

Google Map for Magento 2

Google Map for Magento 2 Last update: 2018/03/16 11:06 magento_2:google_map https://amasty.com/docs/doku.php?id=magento_2:google_map For more details see the Google Map extension page. Google Map for Magento 2 Provide customers

More information

Store Locator. Release Notes Version 2.0

Store Locator. Release Notes Version 2.0 Store Locator Release Notes Version 2.0 Application Data Structure Name Type Purpose SL_Admins Table Administrators of this applications. SL_Stores Table Primary table for Stores. SL_Contacts Table Table

More information

Getting Started with the new GIS Map Service Overview:

Getting Started with the new GIS Map Service Overview: Getting Started with the new GIS Map Service Overview: 1. Layer List Widget Shows all available layers. This widget will be open by default. 2. Legend Widget Gives symbology information for all visible

More information

Zip Code Locator Software Hosted Solution

Zip Code Locator Software Hosted Solution Zip Code Locator Software Hosted Solution USER S GUIDE / Documentation www.geosprawl.com Document Version Control Version Date Change Description 1.0 12/17/2008 Created 2008Reachoutside, LLC. Do not copy

More information

We do More VMAP DOCUMENTATION

We do More VMAP DOCUMENTATION We do More VMAP DOCUMENTATION Overview VMap Component is a uniquely designed Joomla Extension that allows you to put your listings on Google Map. It provides you a very simple and flexible way to put anything

More information

Database Systems Lab. 19. Google Maps API 충남대학교컴퓨터공학과 데이타베이스시스템연구실

Database Systems Lab. 19. Google Maps API 충남대학교컴퓨터공학과 데이타베이스시스템연구실 데이타베이스시스템연구실 Database Systems Lab. 19. Google Maps API 충남대학교컴퓨터공학과 데이타베이스시스템연구실 Google Maps API Tutorial What is Google Maps? Allows you to display maps on your web site Google Maps API Google Maps API

More information

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0

STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 support@magestore.com sales@magestore.com Phone: +1-606-657-0768 STORE LOCATOR USER GUIDE Extension version: 1.0 Magento Compatibility: CE 2.0 Table of Contents 1. INTRODUCTION 3 Outstanding Features...3

More information

Getting Started with Pro Maps for Google

Getting Started with Pro Maps for Google Getting Started with Pro Maps for Google This Getting Started Guide shows you how to get up and running with Pro Maps for Google. This Dreamweaver extension allows you to add static and dynamic maps to

More information

Table of contents. DMXzone Google Maps 2 DMXzone

Table of contents. DMXzone Google Maps 2 DMXzone Table of contents Table of contents... 1 About... 2 Features in Detail... 3 The Basics: Inserting Google Maps on a Page... 20 Advanced: Control Google Maps with Behaviors... 27 Advanced: Track Your Current

More information

Blue Form Builder extension for Magento 2

Blue Form Builder extension for Magento 2 Blue Form Builder extension for Magento 2 User Guide Version 1.0 Table of Contents I) Introduction......5 II) General Configurations....6 1) General Settings.....7 2) ReCaptcha... 8 III) Manage Forms......

More information

Table of contents. DMXzone Google Maps Manual DMXzone.com

Table of contents. DMXzone Google Maps Manual DMXzone.com Table of contents Table of contents... 1 About DMXzone Google Maps... 2 Features in Detail... 3 The Basics: Insterting DMXzone Google Maps on a Page... 16 Advanced: Creating Dynamic DMXzone Google Maps...

More information

Google Maps Manually Place Marker On Click V3 Remove

Google Maps Manually Place Marker On Click V3 Remove Google Maps Manually Place Marker On Click V3 Remove Following is the HTML Markup containing the Google Map implementation. To add markers you will need to click on the map. These markers are added. When

More information

Final Project: Integrating ArcGIS Server with Google Maps Creating a Southern California Wildfire Mapping Application

Final Project: Integrating ArcGIS Server with Google Maps Creating a Southern California Wildfire Mapping Application Final Project: Integrating ArcGIS Server with Google Maps Creating a Southern California Wildfire Mapping Application In the final project for this course you will be creating an integrated Google Maps

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Full Search Map Tab. This map is the result of selecting the Map tab within Full Search.

Full Search Map Tab. This map is the result of selecting the Map tab within Full Search. Full Search Map Tab This map is the result of selecting the Map tab within Full Search. This map can be used when defining your parameters starting from a Full Search. Once you have entered your desired

More information

Working with Charts Stratum.Viewer 6

Working with Charts Stratum.Viewer 6 Working with Charts Stratum.Viewer 6 Getting Started Tasks Additional Information Access to Charts Introduction to Charts Overview of Chart Types Quick Start - Adding a Chart to a View Create a Chart with

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

IEEE Wordpress Theme Documentation

IEEE Wordpress Theme Documentation IEEE Wordpress Theme Documentation Version 1.0.2 2014-05- 16 Table of Contents TABLE OF CONTENTS 2 INITIAL SETUP 3 FRONT PAGE 3 POSTS PAGE 4 CONTACT 5 SITE MAP 6 MENU 7 HOME PAGE 8 PAGE TEMPLATES 10 LEFT

More information

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 2.1

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 2.1 USER MANUAL Quick Maps Version: 2.1 Compatibility: Microsoft Dynamics CRM 2016(v8.0) and above TABLE OF CONTENTS Introduction... 2 Benefits of Quick Maps... 2 Prerequisites... 2 Installation & Configuration...

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

Classified Ads. Release Notes Version 2.0

Classified Ads. Release Notes Version 2.0 Classified Ads Release Notes Version 2.0 Application Data Structure Name Type Purpose CA_Admins Table Primary table for Administrators CA_Advertisers Table Primary table for Advertisers CA_Classified_Ads

More information

Quick Google Maps. This document is published under the Open Content License available from

Quick Google Maps. This document is published under the Open Content License available from Quick Google Maps - cbgooglemaps Quick Google Maps Quick Google Maps Extension Key: cbgooglemaps Language: en Keywords: foradmins, forbeginners Copyright 2000-2016, Christian Brinkert,

More information

Find nearest dealer. Users guide

Find nearest dealer. Users guide Find nearest dealer Users guide January 2017 Digital Media, Group Marketing 1 Table of contents 1. Access to backend... 3 2 Front page... 4 2.1 Left navigation... 5 3 Stockists... 6 3.1 Overview... 6 3.2

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

PCC Local File Viewer User Guide. Version /23/2015 Copyright 2015

PCC Local File Viewer User Guide. Version /23/2015 Copyright 2015 PCC Local File Viewer User Guide Version 1.0 01/23/2015 Copyright 2015 Table of Contents PCC Local File Viewer User Guide... 1 Table of Contents... 2 1 - Introduction... 3 2 - Choosing File Associations...

More information

AIM. 10 September

AIM. 10 September AIM These two courses are aimed at introducing you to the World of Web Programming. These courses does NOT make you Master all the skills of a Web Programmer. You must learn and work MORE in this area

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

The content editor has two view modes: simple mode and advanced mode. Change the view in the upper-right corner of the content editor.

The content editor has two view modes: simple mode and advanced mode. Change the view in the upper-right corner of the content editor. Content Editor The content editor allows you to add and format text, insert equations and hyperlinks, tables, and attach different types of files to content. The editor appears throughout the system as

More information

WebLink Manual EZ-CAMP2

WebLink Manual EZ-CAMP2 WebLink Manual EZ-CAMP2 SofterWare, Inc. WebLink March 2010 Table of Contents Table of Contents 1. WEBLINK OVERVIEW...3 Manual Overview...3 Support...3 WebLink Terminology...4 2. ADDING THE FORM TO YOUR

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

ADOBE 9A Adobe Dreamweaver CS4 ACE.

ADOBE 9A Adobe Dreamweaver CS4 ACE. ADOBE 9A0-090 Adobe Dreamweaver CS4 ACE http://killexams.com/exam-detail/9a0-090 ,D QUESTION: 74 You use an image throughout your Web site. You want to be able to add this image to various Web pages without

More information

Map Direct Lite. Contents. Quick Start Guide: Map Navigation 8/17/2015

Map Direct Lite. Contents. Quick Start Guide: Map Navigation 8/17/2015 Map Direct Lite Quick Start Guide: Map Navigation 8/17/2015 Contents Quick Start Guide: Map Navigation... 1 Map Navigation in Map Direct Lite.... 2 Pan the Map by Dragging It.... 3 Zoom the Map In by Dragging

More information

Creating Maps with Google Static API and IBM Web Content Manager

Creating Maps with Google Static API and IBM Web Content Manager Creating Maps with Google Static API and IBM Web Content Manager Creating Maps with Google Static API and IBM Web Content Manager Table of Contents Index... 1 Overview... 2 Introduction... 2 Roles... 2

More information

Meijer.com Style Guide

Meijer.com Style Guide TABLE OF CONTENTS Meijer.com Style Guide John Green Information Architect November 14, 2011 1. LAYOUT... 2 1.1 PAGE LAYOUT... 2 1.1.1 Header... 2 1.1.2 Body / Content Area... 3 1.1.2.1 Top-Level Category

More information

Tree and Data Grid for Micro Charts User Guide

Tree and Data Grid for Micro Charts User Guide COMPONENTS FOR XCELSIUS Tree and Data Grid for Micro Charts User Guide Version 1.1 Inovista Copyright 2009 All Rights Reserved Page 1 TABLE OF CONTENTS Components for Xcelsius... 1 Introduction... 4 Data

More information

HTML5 and CSS3 JavaScript Advanced Features Page 1

HTML5 and CSS3 JavaScript Advanced Features Page 1 HTML5 and CSS3 JavaScript Advanced Features Page 1 1 HTML5 and CSS3 JAVASCRIPT ADVANCED FEATURES 2 3 4 5 6 Geolocation The HTML5 Geolocation API is used to get the geographical position of a user Most

More information

Special Libraries Association

Special Libraries Association Special Libraries Association David A. Milliron Vice President Media Services david.milliron@caspio.com (650) 691-0900 x741 Custom Web Applications, No Programming Point-and-click platform for creating

More information

This type of content can be added to any content area (such as Subject Materials) or a Learning Module.

This type of content can be added to any content area (such as Subject Materials) or a Learning Module. 1 Overview A variety of content can be added to your subject site including: Item: Create and style your own text or HTML content File: Add a document (e.g. Word, PDF, ZIP) for students to download Audio:

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS A CSS page layout uses the Cascading Style Sheets format, rather than traditional HTML tables or frames, to organize the content on a web page. The basic building block

More information

Week 8 Google Maps. This week you ll learn how to embed a Google Map into a web page and add custom markers with custom labels.

Week 8 Google Maps. This week you ll learn how to embed a Google Map into a web page and add custom markers with custom labels. Introduction Hopefully by now you ll have seen the possibilities that jquery provides for rich content on web sites in the form of interaction and media playback. This week we ll be extending this into

More information

Terratype Umbraco Multi map provider

Terratype Umbraco Multi map provider Terratype Umbraco Multi map provider Installation Installing via Nuget This Umbraco package can be installed via Nuget The first part is the Terratype framework, which coordinates the different map providers,

More information

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS:

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS: WEBSITE PROJECT 2 PURPOSE: The purpose of this project is to begin incorporating color, graphics, and other visual elements in your webpages by implementing the HTML5 and CSS3 code discussed in chapters

More information

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth Google Earth Tutorials Tutorial 2: Annotating Google Earth Google Earth makes it easy to create a map with annotations - you can add placemarks (points), paths (lines), polygons in Google Earth, and add

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

Map Direct Lite. Quick Start Guide: Search Results 05/14/2018

Map Direct Lite. Quick Start Guide: Search Results 05/14/2018 Map Direct Lite Quick Start Guide: Search Results 05/14/2018 Contents Quick Start Guide: Search Results... 1 Search Results in Map Direct Lite.... 2 Where is the Search Results Panel?... 3 Search Result

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

Tips on Excel. Discover some tips to organize and lay out your Excel file and convert it into a CSV or PDF file.

Tips on Excel. Discover some tips to organize and lay out your Excel file and convert it into a CSV or PDF file. Tips on Excel Your business partners or retailers are listed in an Excel file and you want to put them on an interactive map? It's simple with the Click2map's Editor. A simple import process exists to

More information

LizardThemes.com Free & Premium WordPress Themes. LizardThemes. User Guide. First Edition

LizardThemes.com Free & Premium WordPress Themes. LizardThemes. User Guide. First Edition LizardThemes.com Free & Premium WordPress Themes LizardThemes User Guide First Edition Online version: http://lizardthemes.com/documentation/ 2013 Contents Chapter 1 How to start... 3 Chapter 2 Theme Settings...

More information

PVB CONTACT FORM 7 CALCULATOR PRO DOCUMENTATION

PVB CONTACT FORM 7 CALCULATOR PRO DOCUMENTATION PVB CONTACT FORM 7 CALCULATOR PRO 1.4.1 DOCUMENTATION CONTENTS Contents... 1 1. Installation... 1 2. Form tags... 2 2.1. Calculated value... 2 2.1.1. Example... 2 2.1.2. Formula... 2 2.1.2.1. Note on checkbox

More information

CREATING A WEBSITE USING CSS. Mrs. Procopio CTEC6 MYP1

CREATING A WEBSITE USING CSS. Mrs. Procopio CTEC6 MYP1 CREATING A WEBSITE USING CSS Mrs. Procopio CTEC6 MYP1 HTML VS. CSS HTML Hypertext Markup Language CSS Cascading Style Sheet HTML VS. CSS HTML is used to define the structure and content of a webpage. CSS

More information

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 1.0

USER MANUAL. Quick Maps TABLE OF CONTENTS. Version: 1.0 USER MANUAL Quick Maps Version: 1.0 Compatibility: Microsoft Dynamics CRM 2016(v8.0) and above TABLE OF CONTENTS Introduction... 2 Benefits of Quick Maps... 2 Prerequisites... 2 Installation & Configuration...

More information

GeoMaps Add-on Manual

GeoMaps Add-on Manual GeoMaps Add-on Manual Last update: January 9th, 2014 Copyright 2010-2014 ClickFWD LLC Table of contents Chapter 1 GeoMaps Add-on Overview & Installation....... 4 1.1 Overview....................................................................

More information

1 Woocommerce Products Designer

1 Woocommerce Products Designer 1 Woocommerce Products Designer Contents Overview...2 A. Installation...3 1. Requirements...3 2. Installation process...3 B. Configuration...4 1. Basic configuration...4 2. General settings...4 3. Uploads...5

More information

Terratype Umbraco Multi map provider

Terratype Umbraco Multi map provider Terratype Umbraco Multi map provider Installation Installing via Nuget This Umbraco package can be installed via Nuget The first part is the Terratype framework, which coordinates the different map providers,

More information

Note: This tutorial was designed for Windows users. Applications DANA PORTER LIBRARY. February 19, 2013 Authored by: The Geospatial Centre

Note: This tutorial was designed for Windows users. Applications DANA PORTER LIBRARY. February 19, 2013 Authored by: The Geospatial Centre Applications DANA PORTER LIBRARY February 19, 2013 Authored by: The Geospatial Centre 0 TABLE OF CONTENTS Google Earth Introduction... 2 Historical Imagery... 3 Objective... 3 Step by Step... 3 Ruler...

More information

Webforum Content Publisher

Webforum Content Publisher Webforum Content Publisher Administrator Manual Last update: 2008-10-14 Contents Introduction... 4 What is Webforum Content Publisher?... 4 Public and Protected Website... 4 Webforum Content Publisher

More information

MS2. Modern Traffic Analytics ms2soft.com

MS2. Modern Traffic Analytics ms2soft.com MS2 Modern Traffic Analytics ms2soft.com Updated: October 31, 2014 Table of Contents 1 Introduction 3 2 Search Types 6 3.1 Search by: Study Location 11 3.2 Search by: Crash Data 12 3.3 Search Results Page

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2)

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2) Web Development & Design Foundations with HTML5 Ninth Edition Chapter 7 More on Links, Layout, and Mobile Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

More information

GEOTrac Asset Control Centre Point2it Map. [2013] GEOTrac Systems Incorporated. All rights reserved.

GEOTrac Asset Control Centre Point2it Map. [2013] GEOTrac Systems Incorporated. All rights reserved. GEOTrac Asset Control Centre Logging in to the Asset Control Centre 1. Navigate your internet browser to https://www.assetcontrolcenter.com. 2. Enter Company ID 3. Enter User Name 4. Enter Password 5.

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

USER GUIDE PowerMap CRM

USER GUIDE PowerMap CRM USER GUIDE PowerMap CRM 2013 2015 Contents Configuring PowerMap Setting up Entities for Geocoding Geocoding Existing Records Advanced Settings Bing Maps Credentials Initial Latitude Initial Longitude Initial

More information

FlexMLS Maps Quick Reference Guide

FlexMLS Maps Quick Reference Guide FlexMLS Maps Quick Reference Guide Full Search Map Tab Features Define Search Areas box Map tab in Full Search Radius Search tool from an address Show/Hide Property List, Locate Address, and Define Search

More information

D4.5 Public Information System. FORCIP+: Forest Roads for Civil Protection

D4.5 Public Information System. FORCIP+: Forest Roads for Civil Protection D4.5 Public Information System FORCIP+: Forest Roads for Civil Protection Project title Call identifier Project acronym Forest Roads for Civil Protection (FORCIP+) Call for proposals 2015 for prevention

More information

Business Intelligence and Reporting Tools

Business Intelligence and Reporting Tools Business Intelligence and Reporting Tools Release 1.0 Requirements Document Version 1.0 November 8, 2004 Contents Eclipse Business Intelligence and Reporting Tools Project Requirements...2 Project Overview...2

More information

Lab 1: Getting Started with IBM Worklight Lab Exercise

Lab 1: Getting Started with IBM Worklight Lab Exercise Lab 1: Getting Started with IBM Worklight Lab Exercise Table of Contents 1. Getting Started with IBM Worklight... 3 1.1 Start Worklight Studio... 5 1.1.1 Start Worklight Studio... 6 1.2 Create new MyMemories

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Animating Layers with Timelines

Animating Layers with Timelines Animating Layers with Timelines Dynamic HTML, or DHTML, refers to the combination of HTML with a scripting language that allows you to change style or positioning properties of HTML elements. Timelines,

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

PRISM - FHF The Fred Hollows Foundation

PRISM - FHF The Fred Hollows Foundation PRISM - FHF The Fred Hollows Foundation ANALYTICAL INTERFACE USER MANUAL Version 1.1 TABLE OF CONTENTS INTRODUCTION... 6 OVERVIEW... 6 THE FHF-PRISM LOGIN SCREEN... 8 LOGGING INTO THE FHF-PRISM... 8 RECOVERING

More information

Package plotgooglemaps

Package plotgooglemaps Package plotgooglemaps February 15, 2013 Type Package Title Plot SP data as HTML map mashup over Google Maps Version 1.3 Date 2012-07-06 Author Milan Kilibarda Maintainer Milan Kilibarda

More information

Iconasys Advanced 360 Product View Creator. User Guide (Mac OSX)

Iconasys Advanced 360 Product View Creator. User Guide (Mac OSX) Iconasys Advanced 360 Product View Creator User Guide (Mac OSX) Overview 360 Product View Creator UI 1. Upload Image Area 2. Image Viewing Gallery 3. Output Format and Button Create 4. 360 Preview Window

More information

Terratype Umbraco Multi map provider

Terratype Umbraco Multi map provider Terratype Umbraco Multi map provider Installation Installing via Nuget This Umbraco package can be installed via Nuget The first part is the Terratype framework, which coordinates the different map providers,

More information

iii Map Intelligence Client User Manual

iii Map Intelligence Client User Manual Map Intelligence Client User Manual iii TM Map Intelligence Client User Manual ii CONTENTS INTRODUCTION... 5 Purpose... 5 Audience... 5 Conventions... 6 Prerequisites... 6 CONCEPTS... 7 What is Map Intelligence?...

More information

Excel for Dummies: Quick Reference

Excel for Dummies: Quick Reference Excel for Dummies: Quick Reference Walkenbach, John ISBN-13: 9780764539879 Table of Contents The Big Picture: Microsoft Office Excel 2003. What You See: The Excel Window. What You See: Dialog Boxes. Toolbar

More information

Alpha College of Engineering and Technology. Question Bank

Alpha College of Engineering and Technology. Question Bank Alpha College of Engineering and Technology Department of Information Technology and Computer Engineering Chapter 1 WEB Technology (2160708) Question Bank 1. Give the full name of the following acronyms.

More information

Plotting. Documentation. DDBSP - Dortmund Data Bank Software Package

Plotting. Documentation. DDBSP - Dortmund Data Bank Software Package Plotting Documentation DDBSP - Dortmund Data Bank Software Package DDBST Software & Separation Technology GmbH Marie-Curie-Straße 10 D-26129 Oldenburg Tel.: +49 441 361819 0 Fax: +49 441 361819 10 E-Mail:

More information

Address Management User Guide. PowerSchool 8.x Student Information System

Address Management User Guide. PowerSchool 8.x Student Information System PowerSchool 8.x Student Information System Released July 2014 Document Owner: Documentation Services This edition applies to Release 8.0.1 of the PowerSchool software and to all subsequent releases and

More information

Google Map & Radius Search Realtyna Inc.

Google Map & Radius Search Realtyna Inc. 1 Google Map & Radius Search Realtyna Inc. Contents of this manual are applicable to the RPL Google Map& Radius Search Add-on version 3.4+. If you have an older version of the membership add-on, sections

More information

Database Tables Lookup Wizard Relationships Forms Subforms Queries Reports

Database Tables Lookup Wizard Relationships Forms Subforms Queries Reports Version 07/11/09 Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Subforms, and the Lookup Wizard May 2009 by Floyd Jay Winters and Julie Manchester winterf@mccfl.edu Database

More information

Creating a Website in Schoolwires Technology Integration Center

Creating a Website in Schoolwires Technology Integration Center Creating a Website in Schoolwires Technology Integration Center Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Accessing Site Manager... 2 Section Workspace Overview...

More information

Viewer Features. DataBC Mashup Framework (DMF)

Viewer Features. DataBC Mashup Framework (DMF) Viewer Features DataBC Mashup Framework (DMF) Copyright 2014 Ministry of Labour, Citizens' Services and Open Government All Rights Reserved. Printed in Canada The information contained in this document

More information

Resource Scheduling. Release Notes Version 2.0

Resource Scheduling. Release Notes Version 2.0 Resource Scheduling Release Notes Version 2.0 Application Data Structure Name Type Purpose RS_Admins Table Primary table for admins. RS_Inventory_Items Table Primary table for inventory items. RS_Members

More information

Introduction to Programming the Google Maps API

Introduction to Programming the Google Maps API Introduction to Programming the Google Maps API E-Learning for the GIS Professional Any Time, Any Place! geospatialtraining.com Course Modules Module 1: Introduction to Programming the Google Maps API

More information

GOBENCH IQ Release v

GOBENCH IQ Release v GOBENCH IQ Release v1.2.3.3 2018-06-11 New Add-Ons / Features / Enhancements in GOBENCH IQ v1.2.3.3 GOBENCH IQ v1.2.3.3 contains several new features and enhancements ** New version of the comparison Excel

More information

Sergio Luján Mora Department of Software and Computing Systems

Sergio Luján Mora Department of Software and Computing Systems Sergio Luján Mora Department of Software and Computing Systems Embedding Google Maps in web pages GOOGLE MAPS Google Maps Documentation Simple Map Markers Info Window Index Google Maps GM is a geospatial

More information

Create a three column layout using CSS, divs and floating

Create a three column layout using CSS, divs and floating GRC 275 A6 Create a three column layout using CSS, divs and floating Tasks: 1. Create a 3 column style layout 2. Must be encoded using HTML5 and use the HTML5 semantic tags 3. Must se an internal CSS 4.

More information

Real Estate Release Notes Version 2.0

Real Estate Release Notes Version 2.0 Real Estate Release Notes Version 2.0 Application Data Structure Name Type Purpose RE_Agents Table Primary table for Agents RE_Brokers Table Primary table for Brokers RE_Inquiries Table Primary table for

More information

QUICK HELP GUIDE. Traffic Signal Management System (TSMS) Modern Traffic Analytics

QUICK HELP GUIDE. Traffic Signal Management System (TSMS) Modern Traffic Analytics QUICK HELP GUIDE Traffic Signal Management System (TSMS) Modern Traffic Analytics www.ms2soft.cotm Table of Contents 1.0 Introduction...1 2.0 Search Types...4 3.0 Map Interactions...5 4.0 Reports...8 5.0

More information

Adding a RSS Feed Custom Widget to your Homepage

Adding a RSS Feed Custom Widget to your Homepage Adding a RSS Feed Custom Widget to your Homepage The first, and often hardest, task is to decide which blog or news source you wish to bring into your Avenue course. Once you have selected a blog or news

More information

Acceptance Test Plan. for WAVED. Version 3.0. Prepared By: Sean Bluestein, Kristian Calhoun, Keith Horrocks, Steven Nguyen, Hannah Pinkos

Acceptance Test Plan. for WAVED. Version 3.0. Prepared By: Sean Bluestein, Kristian Calhoun, Keith Horrocks, Steven Nguyen, Hannah Pinkos Acceptance Test Plan for WAVED Version 3.0 Prepared By: Sean Bluestein, Kristian Calhoun, Keith Horrocks, Steven Nguyen, Hannah Pinkos Advisor: Kurt Schmidt Stakeholder: Climate Central 2 Table of Contents

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Table JESSICA MILLER WCLS COORDINATOR

Table JESSICA MILLER WCLS COORDINATOR Google Fusion Table JESSICA MILLER WCLS COORDINATOR JMILLER@CITLIB.ORG Purpose Google Fusion Tables is a data management tool that allows you to come to new conclusions about your data by seeing it in

More information

Map Direct Lite. Contents. Quick Start Guide: Sharing the Map 9/4/2015

Map Direct Lite. Contents. Quick Start Guide: Sharing the Map 9/4/2015 Map Direct Lite Quick Start Guide: Sharing the Map 9/4/2015 Contents Quick Start Guide: Sharing the Map... 1 Sharing Maps and Data in Map Direct Lite.... 2 Print Your Map to PDF.... 3 Share Your Map by

More information

Website Creating Content

Website Creating Content CREATING WEBSITE CONTENT As an administrator, you will need to know how to create content pages within your website. This document will help you learn how to: Create Custom Pages Edit Content Areas Creating

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. GEOSPATIAL ANALYTICS: HOW TO VISUALIZE GEOSPATIAL DATA ON MAPS AND CUSTOM SHAPE FILES APPROXIMATE TIME

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

Signs of Spring App. Release Notes Version 1.0

Signs of Spring App. Release Notes Version 1.0 Signs of Spring App Release Notes Version 1.0 App Parameters and Styling In your Caspio account, go to the App s Overview screen. On the right sidebar, click on Manage in the App Parameters area. Edit

More information