//alert('xyz'); // creates a new league object for lakewood village little league // league name[0], url[1], park name[2], address (street[3], city[4], zip[5]), latt[6], long[7] plaza = new league('Plaza', 'http://www.plazalittleleague.com/', 'El Dorado Park', '2760 Studebaker Road Long Beach, CA 90808', 33.8062069, -118.0990824); // marker for plaza var plazamarker = new GMarker(new GLatLng(plaza.latt, plaza.long), markerOptions); // listener for plaza click GEvent.addListener(plazamarker, "click", function() { var html = plaza.bubble; plazamarker.openInfoWindowHtml(html); }); // plaza polygon shape var plazapolygon = new GPolygon([ // 405 and bellflower new GLatLng(33.802758, -118.125279), // bellflower and garford new GLatLng(33.791702, -118.125279), // bellflower between garford and atherton new GLatLng(33.79032, -118.125193), // bellflower along csulb 1 new GLatLng(33.786816, -118.123262), // bellflower along csulb 2 new GLatLng(33.785675, -118.122704), // bellflower along csulb 3 new GLatLng(33.784703, -118.122441), // bellflower and e state univ new GLatLng(33.782041, -118.122409), // bellflower and campus drive/beach dr new GLatLng(33.778006, -118.122232), // bellflower and 7th new GLatLng(33.775402, -118.121223), // 7th between bellflower and studebaker new GLatLng(33.775366, -118.112726), // parima and 7th new GLatLng(33.774296, -118.108521), // bolsa chica and 405/22 new GLatLng(33.774296, -118.042088), // lampson and manley (north from bolsa and 405/22) new GLatLng(33.781181, -118.041873), // lampson and edge of runway new GLatLng(33.781145, -118.062859), // lampson and edge of runway new GLatLng(33.781145, -118.062859), // 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 and carson new GLatLng(33.831638, -118.084145), // carson and ostron new GLatLng(33.832316, -118.100882), // ostrom and harvey way new GLatLng(33.836041, -118.100882), // harvey way and woodruff new GLatLng(33.836059, -118.116546), // woodruff and conant new GLatLng(33.825061, -118.116503), // conant over to bellflower new GLatLng(33.825034, -118.125161), // bellflower to spring new GLatLng(33.810541, -118.12529), // spring and woodruff new GLatLng(33.810532, -118.114593), // woodruff to willow (effect. 405 and willow) new GLatLng(33.803248, -118.114614), // 405 and bellflower new GLatLng(33.802758, -118.125279), // outline, thickness, ??, fill, opacity of fill ], "#000000", 2, 1, "#ff0000", 0.2);