Sensible Open Source

Blog Status

  • 4 yrs 48 wks 4 days old
  • Updated: 11 Mar 2010
  • 455 entries
  • 174 comments
Total: 1,212,255
since: 5 Apr 2005

LinkBlogS

Creating Vidcasts

18 June 2007, Monday 7:05 P GMT-06
Tags:      

Man, Can't Microsoft Catch A Break?

16 March 2007, Friday 12:26 P GMT-06

Viacom, Google andYou Tube, Oh My!

16 March 2007, Friday 12:25 P GMT-06

Switch to digital TV to start in October

16 March 2007, Friday 7:46 A GMT-06

Is the Ice Ready? No, Its Still To Hot To Use...

16 March 2007, Friday 7:43 A GMT-06

MIT Entire Curriculum At disposal of e-learners

6 March 2007, Tuesday 11:52 A GMT-06

A cure for e-mail attention disorder?

2 March 2007, Friday 12:51 A GMT-06
Tags:  

Windows-on-Mac software gets virtualization update

1 March 2007, Thursday 5:08 A GMT-06

EnterpriseDB is/n't Open Source

1 March 2007, Thursday 3:37 A GMT-06

BitTorrent download portal debuts

27 February 2007, Tuesday 9:05 A GMT-06

$45b TXU buyout

27 February 2007, Tuesday 9:02 A GMT-06

iPhone Competitors Got The Touch

26 February 2007, Monday 3:43 A GMT-06
Tags:        

HTC - Smart Mobility

25 February 2007, Sunday 4:22 A GMT-06

Hard to find 1-800 numbers

23 February 2007, Friday 8:35 A GMT-06

Cuba Embraces Open-Source Software

21 February 2007, Wednesday 3:10 A GMT-06

Vista at the tipping point, Err Dipping Point?

11 February 2007, Sunday 11:11 A GMT-06
Tags:  

PostgreSQL Open Source And Persistence

3 February 2007, Saturday 10:32 P GMT-06

Blackboard Pledges No Patent Blocks

3 February 2007, Saturday 10:28 P GMT-06

UVU

5 January 2007, Friday 11:58 P GMT-06

Open-source IP PBX software appliance"

4 January 2007, Thursday 3:44 A GMT-06

Asterisk an under-appreciated Open Source Success Story

4 January 2007, Thursday 3:43 A GMT-06

Open Source AJAX Tooling

4 January 2007, Thursday 3:41 A GMT-06

Google MAIL API Secuirty Alert

1 January 2007, Monday 7:37 P GMT-06
Tags:    

United States Patent Application: 0060288329

26 December 2006, Tuesday 4:00 A GMT-06

LinkBlog Popular Tags

                                       







««Mar 2010»»
SMTWTFS
  12
3
456
789
10
111213
14151617181920
21222324252627
28293031

 

August 16, 2012

Time Left

2 years 5 months 5 days

                   

RSS Add-Me








Google Related Links

Google APIs : Patrick Chanezon (The AJAX Experience)

posted 12 May 2006, Friday
Patrick Chanezon presented the Google API  to Maps and Calendar and its use in third party applications.  The reason Google API exists, in GOOGLESpeak that is... Is to assist the world's organization of information and providing universally and accessible for every day and programmtic use.

The first API  Google provides is the MAPS API which in fact lit the fire of the AJAX world. MAPS front end architecture is VPages (support back button), RPC, and the API boostraps and the accessiblity to this architecture was the point to this meeting.

Patrick discussed the technologies involved with the Google API inclusive of the DOM, CSS, HTML, JavaScript, Data xfer (ie:Json), XML, E4x, JSON/E4X.  Maps as many already know is based on one large image that is digitized into tiles.  From this structure the logisitcs are a matter of x/y coordinates and calculations.

Google Maps implements PNGs which of course all browsers understand natively.  Well, with one exception IE 6.0 which achieves this feat using an activeX plugin.



Google applies some solutions to

VPAGES
The problem solved with in AJAX is handling the state of the browser and mainting the state on hitting the back button and handling the state as in the legacy browser behavior
  • The solution Replace the URL with a stateful back button
  • Maps solution: dummy IFRAME (“VPage”)
Copyrights
JavaScript can only download data from the same host as the HTML document that includes the <script> tag
  • <img> tags can have URLs that are hosted on any server
  • One way communication (client to server):
                                        var img = new Image();
                                              img.src = “http://myserver.com/myapp?a=1&b=2&c=3”;
  • <script> tag can include scripts that are hosted on any server
  • Client Script
function DoRPC(arg0, arg1) {
  var script = document.createElement("script");
  script.src = "http://myserver.com/myapp?arg0=" +
               escape(arg0) + "&arg1=" + escape(arg1);
  document.body.appendChild(script);
}

function HandleRPCResponse(data) {
  ...
}

API Bootstrap
Caching: Maps Javascript file was over 75K
  • Bootstrap” wrapper for Maps JavaScript
The presentation went into GMAPS and how to overlay content such as maps, satellites and hybrid images.  This allowed developers to post company logos as thumbtacks on the map to identify the locations of satelite offices.  This can also be used to locate places you visit or any logistical outcome.  Large sites are restricted, I believe Patrick identified 50,000 hits/links but I am not sure of the exact number.  However, there is a rectriction and one should look into the Licensing and usage before getting to far into their respective effort. :-)

MAPS API V2 has a beefed up interface and identifies how to select adresses, update icons for your own gicon,
how to pass HTML or DOM nodes for mashups, as well as custom controls.  The overlay interface includes for simplisitc methods to implement 
initializ()
remove
copy()
redraw()


Moving on to the Calendar and Google DATA API's are based on ATOM and the ATOM Publishing Protocol
REST AP.  The calendar feed and and query feeder provides quick calendar integration.  I believe I heard, but may be dead wrong, there is no usage and restriction on these API's but I would review the license and restrictions to insure your ideas of use are in line with Google.  All calendar data is ATOM or RSS and the Google NameSpaces are listed here xmlns://gd=http://schemas.google.com/g/2005.

Patrick suffered from a problem with the network and was unable at the begginning to hit some sites live!  He got beyond this very quickly and demonstrated from the links below:

http://del.icio.us/chanezon/ajaxian+google+maps+app+cool
http://del.icio.us/chanezon/ajaxian+google+maps+app+tech
http://code.google.com/
http://www.google.com/apis/maps
Google-Maps-API Developer Forum
Maps API blog
Mike William’s tutorials
http://del.icio.us/chanezon/google+maps
http://www.google.com/calendar/user/public/full

Overall the presentation and material was very strong and the capabilities of the Google API's were presented very well.  The presentation can be seen on Patricks website @ http://blog.chanezon.com/.

Patrick's blog is worthy of an RSS feed, he's realy got some good things to say!

The presentation was well worth the time spent, Patrick gave the audience a "TRUE" "Ajax Experience"






tags:            

links: digg this    del.icio.us    technorati    reddit




1. Patrick Chanezon left...
18 May 2006, Thursday 10:42 am :: http://blog.chanezon.com/

Thanks for summary and the kind comments.