//alert('xyz'); // creates a new league object for greater bellflower little league // league name[0], url[1], park name[2], address (street[3], city[4], zip[5]), latt[6], long[7] gb = new league('Greater Bellflower', 'http://www.eteamz.com/gbllbaseball/', 'Larry Mosher Field', '9200 E. Laurel Bellflower, CA 90706', 33.882911, -118.1382413); // marker for greater bellflower var gbmarker = new GMarker(new GLatLng(gb.latt, gb.long), markerOptions); // listener for gb click GEvent.addListener(gbmarker, "click", function() { var html = gb.bubble; gbmarker.openInfoWindowHtml(html); }); // GB polygon shape var gbpolygon = new GPolygon([ /* SOUTHERN LINE MOVING EAST FROM CHANNEL OVER TO ASHWORTH AND WOODRUFF (PLAZAS NORTHERN LINE) *********************/ // 183rd and channel (between palo verde and studebaker) new GLatLng(33.865641,-118.104551), // 183rd and woodruff new GLatLng(33.865587,-118.117211), // ashworth and woodruff new GLatLng(33.867992,-118.117275), // lakewood and ashworth new GLatLng(33.867921,-118.142488), /* USING BIXBY TO CREATE BIXBY/GB HYBRID ***********************************************/ // lakewood blvd and candlewood new GLatLng(33.853845,-118.142509), // candlewood and deeboyar new GLatLng(33.853845,-118.163666), // north on candlewood and deeboyar new GLatLng(33.854041, -118.163624), // halfway between deeboyar and cherry on candlewood/market new GLatLng(33.854344, -118.165555), // cherry and candlewood/market new GLatLng(33.854397186866684, -118.16772222518921), // cherry and del amo new GLatLng(33.84696606904095, -118.16752910614014), // candlewood between cherry and paramount //new GLatLng(33.853845,-118.164268), // del amo between cherry and paramount //new GLatLng(33.847109,-118.164203), // del amo and orange new GLatLng(33.847037,-118.176842), // del amo and lemon (curving towards atlantic) new GLatLng(33.846788,-118.180189), // del amo and atlantic new GLatLng(33.845327,-118.184953), // del almo and locust (curving towards lb blvd) new GLatLng(33.846521,-118.189738), // del amo and long beach blvd new GLatLng(33.846895,-118.193879), // del amo and 710 new GLatLng(33.846717,-118.205552), /* MOVING UP 710 *******************************************************************************************/ // CURVE UP 710 new GLatLng(33.854219,-118.204393), // SUSANA AND 710 (THEY DONT INTERSECT BUT ITS WHERE WE VERE OFF TO SUSANA FROM 710 new GLatLng(33.858549,-118.202291), /* MOVES OFF 710 AND UP TO JUST PAST COMPTON COLLEGE *****************************************************/ // SUSANA AND 91 new GLatLng(33.873569,-118.207119), // ARTESIA AND SUSANA new GLatLng(33.874326,-118.207161), // DELTA AVE AND ARTESIA new GLatLng(33.874442,-118.208642), // DELTA AND GREENLEAF new GLatLng(33.881354,-118.208771), /* MOVING EAST ON GREENLEAF AND OVER TO CHANNEL *****************************************************/ // GREENLEAF OVER TO CHANNEL new GLatLng(33.881532,-118.188837), /* MOVING UP CHANNEL **************************************************************************/ // CHANNEL AND ALONDRA (JUST OFF 710) new GLatLng(33.889156,-118.187656), // CHANNEL AND SOMERSET (JUST OFF 710) new GLatLng(33.896299,-118.186154), // SAN VICENTE AND CHANNEL (JUST OFF 710) new GLatLng(33.89962,-118.185661), // ROSECRANS AND CHANNEL (JUST OFF 710) new GLatLng(33.903663,-118.18256), /* MOVING EAST ON ROSECRANS **************************************************/ // ROSECRANS AND GARFIELD new GLatLng(33.903672,-118.16887), /* USING BIXBY TO CREATE BIXBY/GB HYBRID ***********************************************/ /* USING BIXBY BOUNDARY TO END SOUTHERN BORDER AND START WESTERN ***************************/ // EFFECTIVELY POPPY AND LAKEWOOD // new GLatLng(33.868598,-118.142638), // DOWNEY AND POPPY // new GLatLng(33.868705,-118.151307), // ALONDRA AND DOWNEY // new GLatLng(33.889299,-118.151436), /* MOVING EAST TO GARFIELD *****************************************/ // GARFIELD AND ALONDRA // new GLatLng(33.889192,-118.168859), /* MOVING NORTH TO ROSECRANS *************************************/ // ROSECRANS AND GARFIELD // new GLatLng(33.903672,-118.16887), /* MOVING EAST TO LAKEWOOD BLVD **********************************/ // ROSECRANS AND LAKEWOOD new GLatLng(33.903832,-118.142896), /* MOVING NORTH ON LAKEWOOD TO GARDENDALE *************************/ // LAKEWOOD AND GARDENDALE new GLatLng(33.910511,-118.142896), /* MOVING EAST TO CHANNEL *********************************/ // GARDENDALE AND HARWELL new GLatLng(33.908997,-118.138647), // FOSTER CURVES BEFORE CLARK new GLatLng(33.909674,-118.135198), // FOSTER AND CLARK (GARDENDALE TURNS INTO FOSTER) new GLatLng(33.909763,-118.134141), // FOSTER HEADED TO CHANNEL new GLatLng(33.909941,-118.109722), /* MOVING SOUTH DOWN CHANNEL AND BACK TO CLOSE BOUNDARY **********************************************/ // CHANNEL BETWEEN 605 AND WOODRUFF new GLatLng(33.905845,-118.108649), // FLORA VISTA AND CHANNEL (NEAR 605 AND 91 INTERSECTION) new GLatLng(33.880178,-118.108392), // 183rd and channel (between palo verde and studebaker) new GLatLng(33.865641,-118.104551), // outline, thickness, ??, fill, opacity of fill // old fill color #D2B723 ], "#000000", 2, 1, "#ff0000", 0.2);