//alert('xyz'); // creates a new league object for long beach little league // league name[0], url[1], park name[2], address (street[3], city[4], zip[5]), latt[6], long[7] lb = new league('Long Beach', 'http://www.LBLL.org', 'Stearns Champions Park', '4620 E. 23rd St. Long Beach, CA 90815', 33.7996795, -118.1395047); // marker for long beach var lbllmarker = new GMarker(new GLatLng(lb.latt, lb.long), markerOptions); // listener for lbll click GEvent.addListener(lbllmarker, "click", function() { var html = lb.bubble; lbllmarker.openInfoWindowHtml(html); }); // lb polygon shape var lbpolygon = new GPolygon([ // at queen mary new GLatLng(33.753461, -118.185596), // north of queen mary in channel new GLatLng(33.763105, -118.205445), // about 7th and 710 new GLatLng(33.775277, -118.205445), // about 7th and junipero new GLatLng(33.775277, -118.163409), // about junipero and e pac cst highway new GLatLng(33.789892, -118.163409), // about e pac cst highway and cherry new GLatLng(33.789852, -118.167658), // about cherry and 405 new GLatLng(33.813545, -118.167658), // 405 and spring new GLatLng(33.811815, -118.161736), // 405 between spring and willow new GLatLng(33.808143, -118.155169), // 405 and lakewood new GLatLng(33.80586, -118.142595), // 405 and just past willow new GLatLng(33.803186, -118.137274), // 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), // bolsa chica and churchill new GLatLng(33.752515, -118.042624), // bolsa chica and rancho new GLatLng(33.750276, -118.041894), // bolsa chica and edinger new GLatLng(33.73005, -118.041658), // eddinger just into the water new GLatLng(33.73005, -118.088608), // north near alamitos bay new GLatLng(33.741471, -118.119164), // near belmont shore new GLatLng(33.754959, -118.142767), // in water near shoreline new GLatLng(33.759384, -118.1777), // at queen mary new GLatLng(33.753461, -118.185596), ], "#000000", 2, 1, "#0000ff", 0.2);