// Create a base icon for all of our markers that specifies the
var fieldIcon = new GIcon();

/* SIZE OF ICON */
fieldIcon.iconSize = new GSize(100, 79);

/* LOCATION OF ICON */
fieldIcon.iconAnchor = new GPoint(0, 0);

/* IMAGE ICON LOC */
fieldIcon.image = "http://cadistrict38.org/wp/wp-content/plugins/district_googlemaps/fieldicon.png";


/* LOCATION OF INFO WINDOW AND SHADOW */
//fieldIcon.infoWindowAnchor = new GPoint(29, 2);
//fieldIcon.infoShadowAnchor = new GPoint(38, 25);


/* TELLS MARKER TO USE THIS ICON OBJECT */
markerOptions = { icon:fieldIcon };

