Bonjour à tous,
Impossible de faire fonctionner ce qui semble facile pour tout ceux qui l'on fait ... Je parle de la géolocalisation avec l'api de google.
J'ai suivi à la lettre le tuto ici présent : http://briancray.com/2009/05/29/find...pt-google-api/
J'ai bien évidement ma key.api.google de correcte
J'obtiens toujours une page blanche avec rien d'écrit ! Ni erreur ni quoi que se soit ...
Je viens de passer pas mal de temps sur internet, apparemment personne n'a eu de souci avec se tuto ...
Si quelqu'un a une idée sur le soucis ...
Merci d'avance,
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Geolocalisation</title> <meta name="robots" value="none" /> </head> <body> <div id="yourinfo"></div> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="http://maps.google.com/maps?file=api&;amp;v=2&key=ABQIAAAAGZRntOjDRnAlz8qNTR_fCRRXnZ9ahqP1k8ixUlcxFVPzCMiTHhRA_HtSCrE16_JKu_xRLQR5FHGLAw"></script> <script type="text/javascript"> if(google.loader.ClientLocation) { visitor_lat = google.loader.ClientLocation.latitude; visitor_lon = google.loader.ClientLocation.longitude; visitor_city = google.loader.ClientLocation.address.city; visitor_region = google.loader.ClientLocation.address.region; visitor_country = google.loader.ClientLocation.address.country; visitor_countrycode = google.loader.ClientLocation.address.country_code; document.getElementById('yourinfo').innerHTML = '<p>Lat/Lon: ' + visitor_lat + ' / ' + visitor_lon + '</p><p>Location: ' + visitor_city + ', ' + visitor_region + ', ' + visitor_country + ' (' + visitor_countrycode + ')</p>'; } else { document.getElementById('yourinfo').innerHTML = '<p>Whoops!</p>'; } </script> <div id="yourinfo"></div> </body> </html>
-----