//alert('xyz'); // creates a new league object for wlb little league // league name[0], url[1], park name[2], address (street[3], city[4], zip[5]), latt[6], long[7] wlb = new league('West Long Beach', 'http://cadistrict38.org/leagues/#WestLongBeach', 'Silverado & Hudson Parks', '1545 W. 32nd Street Long Beach, CA 90806', 33.8152736, -118.2131681); // marker for west long beach var wlbmarker = new GMarker(new GLatLng(wlb.latt, wlb.long), markerOptions); // listener for wlb click GEvent.addListener(wlbmarker, "click", function() { var html = wlb.bubble; wlbmarker.openInfoWindowHtml(html); }); // wlb polygon shape var wlbpolygon = new GPolygon([ /* 7TH STREET BETWEEN CHANNEL AND JUNIPERO ****************************************************/ // about 7th and 710 new GLatLng(33.775277, -118.205445), // about 7th and junipero new GLatLng(33.775277, -118.163409), /* JUNIPERO BETWEEN 7TH AND PCH ****************************************************/ // about junipero and e pac cst highway new GLatLng(33.789892, -118.163409), /* PCH TO CHERRY ****************************************************/ // about e pac cst highway and cherry new GLatLng(33.789852, -118.167658), /* CHERRY BETWEEN PCH AND 405 ****************************************************/ // about cherry and 405 new GLatLng(33.813545, -118.167658), /* 405 BEFORE IT TURNS SOUTH ****************************************************/ // 405 and walnut new GLatLng(33.814383, -118.171992), // about 405 and california new GLatLng(33.814383, -118.180704), // 405 and atlantic new GLatLng(33.815354, -118.185039), // 405 and long beach blvd new GLatLng(33.817476, -118.18933), // 405 and almost 35th street new GLatLng(33.820315, -118.192855), // 405 and pacific new GLatLng(33.820796, -118.19396), // 405 and pacific pl new GLatLng(33.823312, -118.19893), // 405 and onramp off pacific pl new GLatLng(33.825126, -118.202301), // 405 and middle of water new GLatLng(33.826137, -118.20537), // 405 and 710 new GLatLng(33.826505, -118.207397), // 405 and sante fe new GLatLng(33.825458, -118.215744), // 405 and hesperian new GLatLng(33.825435, -118.224671), /* 405 DOWN TO PACIFIC ****************************************************/ // hesperian and arlington new GLatLng(33.821781, -118.224628), // from hesperian going to pacific new GLatLng(33.817984, -118.220905), /* PACIFIC GOING SOUTH TO WILLOW ****************************************************/ // from willow and train tracks new GLatLng(33.804291, -118.221431), // from willow and middle road new GLatLng(33.804577, -118.222761), /* WILLOW AND MIDDLE ROAD ****************************************************/ // middle road curve 1 new GLatLng(33.80365, -118.222804), // middle road curve 2 new GLatLng(33.802856, -118.224065), // middle road out of curve new GLatLng(33.802205, -118.224714), // basically middle road and pch new GLatLng(33.791061, -118.228683), /* MIDDLE ROAD TO PCH ****************************************************/ // anaheim and w 9th new GLatLng(33.782714, -118.219543), /* PCH TO ANAHEIM ****************************************************/ // 47 and 103 at terminal island area new GLatLng(33.762024, -118.251514), /* TERMINAL ISLAND AREA ****************************************************/ // navy way in the water new GLatLng(33.726767, -118.23658), // to the right of navy way before coming north to queen mary new GLatLng(33.726767, -118.178902), // at queen mary new GLatLng(33.753461, -118.185596), // north of queen mary in channel new GLatLng(33.763105, -118.205445), /* IN WATER ****************************************************/ // about 7th and 710 new GLatLng(33.775277, -118.205445), /* BACK AT START ****************************************************/ ], "#000000", 2, 1, "#ff0000", 0.2);