2011-01-07 11 views

Répondre

0

TIFF doit être converti en PNG ou JPEG

0

Consultez la documentation here. L'exemple de code va comme ça:

var myLatlng = new google.maps.LatLng(41.875696,-87.624207); 
var myOptions = { 
    zoom: 11, 
    center: myLatlng, 
    mapTypeId: google.maps.MapTypeId.ROADMAP 
} 

var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); 

var ctaLayer = new google.maps.KmlLayer('http://gmaps-samples.googlecode.com/svn/trunk/ggeoxml/cta.kml'); 
ctaLayer.setMap(map); 

Hope it helps

Questions connexes