Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Basic Google Maps Example - Tabbed InfoWindows from Xml APIv2</title> <script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAZBe7uHI90ESk2XAmWRL3RxR6u04U0tImA3bfwZ3-HKdEno7z2xRk2YE6OkudtBX5qy0vLrgbf1DUCg"></script> <script type="text/javascript"> googleload"jquery"'1.3'; googleload"maps""2.x"; </script> <script type="text/javascript" charset="utf-8"> $documentreadyfunction var map = $"#map"get0; var chicoCA = 39.73399-121.845074; mapsetCenterchicoCA13; //zoom var bounds = mapgetBounds; var southWest = boundsgetSouthWest; var northEast = boundsgetNorthEast; var lngSpan = northEastlng - southWestlng; var latSpan = northEastlat - southWestlat; var markers = 39.729308-121.854087 ; for var i = 0; i < markerslength; i++ var point = markers; marker = point; mapaddOverlaymarker; markersi = marker; $markerseachfunctionimarker $"<li />" html"Point "+i clickfunction displayPointmarkeri; appendTo"#list"; GEventaddListenermarker"click"function displayPointmarkeri; ; ; $"#message"appendTomapgetPaneG_MAP_FLOAT_SHADOW_PANE; $"#message"hide; var moveEnd = GEventaddListenermap"moveend"function var markerOffset = mapfromLatLngToDivPixelmarkergetLatLng; $"#message" fadeIn css top:markerOffsetyleft:markerOffsetx ; GEventremoveListenermoveEnd; ; mappanTomarkergetLatLng; ; </script> <style type="text/css" media="screen"> #map float:left; width:500px; height:500px; #message position:absolute; padding:10px; background:#555; color:#fff; width:75px; #list float:left; width:200px; background:#eee; list-style:none; padding:0; #list li padding:10px; #list li:hover background:#555; color:#fff; cursor:pointer; cursor:hand; </style> </head> <body> <div id="map"></div> <ul id="list"></ul> <div id="message" style="display:none;"> Test text </div> </body> </html> |