Google APIs and Facebook API

Slides:



Advertisements
Similar presentations
NEXT. Create Pages in Blogger Another top user-requested feature has just graduated from Blogger In Draft! Blogger now makes it easy to create Pages linked.
Advertisements

Connect Pictometry Online End User
Electrical and Computer Engineering Vitaly Gordievsky Alex Trefonas Scott Richard Matt Beckford Final Project Review.
Macromedia Dreamweaver 4 Advanced Level Course. Add Rollovers Rollovers or mouseovers are possibly the most popular effects used in designing Web pages.
Telerik Software Academy Software Quality Assurance.
1 Agenda Overview Review Roles Lists Libraries Columns.
CHAPTER 8: Enhancing a Website Session 1. Objectives Embed a YouTube video in your website Insert a slideshow in your website Use Google fonts in your.
Data-tier Application, Import, Refactoring, Publish, Schema Comparison, Database Unit Testing Borislav Statev Telerik Software Academy academy.telerik.com.
Enhancing Instruction with MediaCAST. About Inventive Technology  Headquartered at the foot of the Rockies in Broomfield, CO  Serving hundreds of K-
Highly Confidential – for UCRE Affiliate Use Only 2015 Regional Training Class Embedding maps on the listing page of your United Country office website.
JavaScript and The Document Object Model MMIS 656 Web Design Technologies Acknowledgements: 1.Notes from David Shrader, NSU GSCIS 2.Some material adapted.
Go to the MTSD Home Page In the URL add “/admin”
© Cheltenham Computer Training 2001 Macromedia Dreamweaver 4 - Slide No 1 Macromedia Dreamweaver 4 Advanced Level Course.
Programming games Examples: Audio example. Google Maps api. Classwork: show more complex video. Classwork/Homework: Find place (lat and long) for basic.
AngularJS Routing Routes, Route Parameters, Templates, Location, Navigation SoftUni Team Technical Trainers Software University
Embedding CenterView and Hosting External Content.
Google APIs and Facebook API Ivaylo Kenov Penka Borukova Telerik Corporation Telerik Academy Students.
Foxbright – Smarter Education Websiteswww.foxbright.com Foxbright Training Foxbright Teacher Pages
Unleash the Power of jQuery Doncho Minkov Telerik Software Academy academy.telerik.com Senior Technical Trainer
Using an HTML image (img) element’s onclick event to change the source (src) of an iframe to an embedded youtube video.
Dr. Martin Zhao Sept 4, Topics HTML and related tutorials on w3schools.com Related HTML tags Adding interesting features using JavaScript What is.
Highly Confidential – for UCRE Affiliate Use Only 2015 Regional Training Embedding Maps into your listings on your United Country office website.
Unleash the Power of jQuery Learning & Development Team Telerik Software Academy.
SOAP-based Web Services Telerik Software Academy Software Quality Assurance.
Forms Overview, Query string, Submitting arrays, PHP & HTML, Input types, Redirecting the user Mario Peshev Technical Trainer Software.
See it. Click it. Get it. INTERACTIVE VIDEO “Where Psychology Meets Technology” THE FUTURE IS NOW.
How to Use Google Charts. Using Google Charts Google Charts is used to provide a way to visualize data on your website. You can choose to use simple line.
Document Object Model Nasrullah. DOM When a page is loaded,browser creates a Document Object Model of the Page.
Events Event Handling in JavaScript SoftUni Team Technical Trainers Software University
Main Concepts of Web Testing Telerik Software Academy Software Quality Assurance.
Embedding Videos and Slideshows. (Click on any question you have to go directly to the answer, while in presentation mode)
How to Apply PDF in Flipbook on Website. Description If you are finding solution for applying PDF in flipbook mode on website, and adding multimedia items.
Google Maps API. Contents: 1. Google Maps API Key 2. Create a Basic Google Map 3. Google Maps Overlays 4. Google Maps Events 5. Google Maps Controls 6.
Teacher User Manual. CONTENTS Login and profile management Login Screen03 Edit Profile Course and lesson management Course Companion Lesson.
Advanced HTML Tags:.
ArcGIS API for javascript
Site Maps and Navigation
Weebly Elements, Continued
Done already for your convenience!
Mapping for the interwebs
Setup QA Process Software Quality Assurance Telerik Software Academy
8 Steps to Facebook Ad Creating & Conversion Tracking Set-up
Creating Story Maps using ArcGIS Online
Basic Math in 2D Game Development
Using ASP.NET Master Pages
2D Graphics and Animations in Unity 3D
Kendo UI ASP.NET MVC Wrappers
Multidimensional Arrays
Learning the Basics – Lesson 1
Tracking and Booking Taxi
Web Service Testing …in another way Software Quality Assurance
The Document Object Model (DOM) is a W3C standard.
Functional Programming
* Lecture # 7 Instructor: Rida Noor Department of Computer Science
Building a Custom Video Player
Binary, Decimal and Hexadecimal Numbers
Software Quality Assurance
Online Testing System Assessment Viewing Application (AVA)
File Upload in ASP.NET Ivaylo Kenov Technical Assistant
Subroutines in Computer Programming
Online Testing System Assessment Viewing Application (AVA)
Client-Side Internet and Web Programming
Assessment Viewing Application (AVA)
Tutorial 6 Creating Dynamic Pages
Introduction to Google Maps
Course: Design & Technology
Story Mapping Share a product video Choose a recording area
Catchup. Work on project.
Selenium Web Test Tool Training Using Ruby Language
Telerik Testing Framework
Presentation transcript:

Google APIs and Facebook API Third Party APIs Google APIs and Facebook API JavaScript Applications Telerik Software Academy http://academy.telerik.com

Table of Contents What is API? Google API Google Maps API YouTube API * Table of Contents What is API? Google API Google Maps API YouTube API (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*

What is API? Pleasures from beyond

What is API? (1) Application Control Interface Provides ready functionality Usually from a remote server Tools for easy developing Normally is divided by blocks Programmers creates new application by combining these blocks

What is API? (2) How to use it Example for Google Maps Include a script into the HTML containing the URL to the API Done! You are ready to use all the functionality Example for Google Maps <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"> </script>

Google APIs Thousands!

Google+ APIs Go to https://developers.google.com/ YouTube Google+ Google Maps Android Google Places Chrome Google TV Games

Google Maps API The globe is yours

Simple map (1) Simple map API link The most basic map Can get coordinates with zoom and display them API link <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"> </script>

Simple map (1) Coordinates are objects with two arguments: Latitude and Longitude Options for the map: Type – ROADMAP and SATELLITE Center – where to initialize the map Zoom Methods panTo(coordinates) – moves the map setZoom(number) , setCenter(coordinates)

Simple Map Live demo

Advanced options Geolocation Information window Language option Get it with HTML5 functionality and pass the coordinates to the map Information window Shows custom content on a particular position and map Language option Displays the map in preset language

Advanced options Live demo

Markers and Events Marker Events Mark a special position on your map Has properties for map, position and title Events On the map - center_changed, zoom_changed, etc. On the marker On other DOM elements

Markers and Events Live demo

Other map options Styles Layers Controls Map types Services Find more at: https://developers.google.com/maps/docum entation/javascript/

Streaming videos from beyond YouTube API Streaming videos from beyond

YouTube API Embed the player in your page Functionality for various controls .playVideo() .pauseVideo() .loadVideoById() .loadPlaylist() .nextVideo() .previousVideo()

YouTube API Live demo

http://algoacademy.telerik.com

Exercises *Create an “Online Map Tourism” application using Google maps Choose 10 capital cities from the world Make two buttons for “Next” and “Previous” which should iterate through the cities When one of the buttons is clicked, map should pan to the new location of the new city Each city should have Infobox with more information about it on the map Show lists of the cities on the page. If the user chooses a city, the map should pan directly to it

Exercises (2) *Read about the Google+ JavaScript API *Combine Google+ and YouTube APIs If the user logins with Google+ the player should show, otherwise it should be hidden When the user logs, his profile picture should be shown Create custom controls for the video – pause, stop, load by id, load playlist, next, previous, mute, unmute, set volume, playback quality options Add options to share the current video on Google+

Free Trainings @ Telerik Academy “C# Programming @ Telerik Academy csharpfundamentals.telerik.com Telerik Software Academy academy.telerik.com Telerik Academy @ Facebook facebook.com/TelerikAcademy Telerik Software Academy Forums forums.academy.telerik.com