This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://maps.google.com/maps?file=api&v=2.x&key=ABQIAAAAEX95M5gKl7Nn_i4Mzl1TAhT4b5KCiYFj3ZfOJov1Qpq4YsRyghTrgMf7VDdXUg9oULkwfWhrlOumiQ" type="text/javascript"></script> | |
<script type="text/javascript"> | |
var map = null; | |
var geocoder = null; | |
function initialize() { | |
if (GBrowserIsCompatible()) { | |
map = new GMap2(document.getElementById("map_canvas")); | |
map.setCenter(new GLatLng(29.427394,-98.624654), 15); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function colorThem ( domElement ) { | |
var green = parseInt ( ( domElement.text() / 100 ) * 255 ); | |
var red = 255 - green; | |
greenString = green.toString ( 16 ); | |
redString = red.toString ( 16 ); | |
if ( greenString.length == 1 ) greenString = '0' + greenString; | |
if ( redString.length == 1 ) redString = '0' + redString; | |
NewerOlder