Hello guys, i really need your help, i'm using google maps Javascript Version 2
this is the link of my website : http://imati.comoj.com i pick the weather information succefuly from weatherBug Api using Php but i want to add wunderground Api Also; this is the javascript code calling weatherbug.php ---------------------------------------------------------------------------------------------------- //// weatherBug needs a lat and lng value with 2 decimal places each as input. Format here. var latString = String(myLatLng.lat().toFixed(2)); var lngString = String(myLatLng.lng().toFixed(2)); httpObject.open("GET", "weatherbug.php?lat=" + latString + "&long=" + lngString, true); httpObject.onreadystatechange = makeWeatherPage; httpObject.send(null); ---------------------------------------------------------------------------------------------------- Please i need help for how to integrate the wunderground Api php File Thank you. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
