//alert('xyz'); // creates a new league object for hawaiian gardens little league // league name[0], url[1], park name[2], address (street[3], city[4], zip[5]), latt[6], long[7] hg = new league('Hawaiian Gardens', 'http://cadistrict38.org/leagues/#HawaiianGardens', 'Bloomfield Park', '21420 Pioneer Boulevard Lakewood, CA 90715', 33.8347728, -118.0819043); // marker for hawaiian gardens var hgllmarker = new GMarker(new GLatLng(hg.latt, hg.long), markerOptions); // listener for hawaiian gardens click GEvent.addListener(hgllmarker, "click", function() { var html = hg.bubble; hgllmarker.openInfoWindowHtml(html); }); // hgll polygon shape var hgllpolygon = new GPolygon([ /* SOUTHERN LINE FROM PLAZA HEADING TO 605 *****************************************/ // bloomfield just past orange new GLatLng(33.825578, -118.063374), // across river to wardham and 224th new GLatLng(33.825507, -118.065476), // down to e tula new GLatLng(33.821834, -118.067193), // tula and cortner new GLatLng(33.821924, -118.069049), // curve up cortner to 226th new GLatLng(33.822449, -118.068738), // cortner and 226th new GLatLng(33.824045, -118.068738), // 226th to norwalk new GLatLng(33.824018, -118.071817), // norwalk south to even with ne edge of east ring new GLatLng(33.822325, -118.071806), // fala and east ring new GLatLng(33.822409, -118.074183), // east ring up to 605 new GLatLng(33.824722, -118.08172), /* 605 GOING NORTH TO DEL AMO ************************************************************************************/ // carson and 605 new GLatLng(33.831638,-118.084145), // 605 and del amo new GLatLng(33.846182,-118.09247), /* DEL AMO NORTH LINE ****************************************************************/ // del amo between bloomfield and moody (in channel) new GLatLng(33.846538,-118.05831), /* HEADING DOWN CHANNEL BEFORE HEADING BACK TO LAND ****************************************************************/ // channel curve 1 new GLatLng(33.843188,-118.059897), // channel curve 2 new GLatLng(33.835061,-118.061228), // bloomfield and lincoln/caron (in water southwest of intersection) new GLatLng(33.829606,-118.063245), /* CONNECTING BACK TO FIRST POINT ****************************************************************/ // bloomfield just past orange new GLatLng(33.825578, -118.063374), // outline, thickness, ??, fill, opacity of fill ], "#000000", 2, 1, "#D2B723", 0.2);