//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] // creates a new league object for bixby north little league // league name[0], url[1], park name[2], address (street[3], city[4], zip[5]), latt[6], long[7] lv = new league('Lakewood Village', 'http://www.lvlittleleague.com/', 'Heartwell Park', '5700 Carson St Long Beach, CA 90808', 33.8322283, -118.1208738); // marker for lakewood village var lvmarker = new GMarker(new GLatLng(lv.latt, lv.long), markerOptions); // listener for lv click GEvent.addListener(lvmarker, "click", function() { var html = lv.bubble; lvmarker.openInfoWindowHtml(html); }); // lakewood village polygon shape var lvpolygon = new GPolygon([ /* 405 SECTION FROM WLB ******************************************/ // 405 and 710 new GLatLng(33.826505, -118.207397), // 405 and middle of water new GLatLng(33.826137, -118.20537), // 405 and onramp off pacific pl new GLatLng(33.825126, -118.202301), // 405 and pacific pl new GLatLng(33.823312, -118.19893), // 405 and pacific new GLatLng(33.820796, -118.19396), // 405 and almost 35th street new GLatLng(33.820315, -118.192855), // 405 and long beach blvd new GLatLng(33.817476, -118.18933), // 405 and atlantic new GLatLng(33.815354, -118.185039), // about 405 and california new GLatLng(33.814383, -118.180704), // 405 and walnut new GLatLng(33.814383, -118.171992), // about cherry and 405 new GLatLng(33.813545, -118.167658), /* 405 SECTION FROM LONG BEACH ***************************************/ // 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), // woodruff to willow (effect. 405 and willow) new GLatLng(33.803248, -118.114614), /* EASTERN LINE GOING NORTH FROM PLAZA *********************************/ // spring and woodruff new GLatLng(33.810532, -118.114593), // bellflower to spring new GLatLng(33.810541, -118.12529), // conant over to bellflower new GLatLng(33.825034, -118.125161), // woodruff and conant new GLatLng(33.825061, -118.116503), // harvey way and woodruff new GLatLng(33.836059, -118.116546), /* NORTH LINE MOVING WEST ********************************************************/ // bellflower and harvey way new GLatLng(33.836059,-118.125172), // bellflower and del amo new GLatLng(33.847144,-118.125172), // lakewood and del amo new GLatLng(33.847144,-118.142488), // 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), /* 710 heading to 405 **************************************************/ // 710 and about carson (curving to 405) new GLatLng(33.833706,-118.208942), // 405 and 710 new GLatLng(33.826505, -118.207397), // outline, thickness, ??, fill, opacity of fill ], "#000000", 2, 1, "#D2B723", 0.2);