[API Google Earth] Tutorial 110 : Insertion d'un fond google Earth dans blogger

Un tutoriel sur la méthode pour insérer un fond de carte Google Earth dans un site web : dans le cas présent, Blogger. Le code provient du site Google Developpement.



 

Voici le code fourni par Google

<html>
<head>
<title>
Sample
</title>
<script type="text/javascript" src="https://www.google.com/jsapi"> 
</script>   
<script type="text/javascript">     
var ge;     
google.load("earth", "1");    
function init() 
{       
google.earth.createInstance('map3d', initCB, failureCB);     
}     
function initCB(instance) 
{       
ge = instance;
       
ge.getWindow().setVisibility(true);
     
}     
function failureCB(errorCode) 
{     
}     
google.setOnLoadCallback(init);   
</script> 
</head> 
<body>   
<div id="map3d" style="height: 400px; width: 600px;">
</div> 
</body> 
</html>

Aucun commentaire:

Enregistrer un commentaire