Slide 53
Slide 53 text
What to do about the map?
var breakpoint = 481,
id = 'mapcontainer',
viewportWidth = window.innerWidth;
if (viewportWidth > breakpoint) {
var mapElement = document.createElement('iframe');
mapElement.id = 'map';
mapElement.src = 'http://maps.google.com/maps?f=q&s
ource=s_q&hl=en&geocode=&q=334+NW+11th+Ave,+Portland,+
OR+97209&aq=&sll=37.0625,-95.677068&sspn=58.164117,80.
332031&vpsrc=0&ie=UTF8&hq=&hnear=334+NW+11th+Ave,+Port
land,+Oregon+97209&t=m&ll=45.525472,-122.68218&spn=0.0
1804,0.025749&z=14&output=embed';
document.getElementById(id).insertBefore(mapElement,
maplink);
}