YouTube-video in einem Google Map-Info-Fenster

Ich versuchte ein video auf youtube in einer Google-Karte (v3) - Info-Fenster.

Es funktioniert gut in Firefox und Internet Explorer.

Tut es nicht Arbeit in Safari und Chrome. In diesen Browsern, die Positionierung ist ausgeschaltet und das video bewegt sich nicht, wenn Sie die Karte verschieben. Das video bekommt auch gehackte manchmal.

Hier ist der code, doe

<!doctype html>
<html>
<head>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script>
var map;
function initialize() {
    latlng = new google.maps.LatLng(33.4222685, -111.8226402)
    myOptions = {
      zoom: 4,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById("map"),myOptions)
    var point = new google.maps.LatLng(33.4222685, -111.8226402);
    var marker = new google.maps.Marker({
        position: point,
        map: map
    })
    google.maps.event.addListener(marker, "click", function(){
        bubble = new google.maps.InfoWindow({
          content: '<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/UmFjNiiVk9w?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UmFjNiiVk9w?fs=1" type="application/x-shockwave-flash" width="425" height="344" allowscriptaccess="always" allowfullscreen="true"></embed></object>'
        })
        bubble.open(map, marker);
    })
}
</script>
</head>
<body onload="initialize();">
  <div id="map" style="width: 984px; height: 495px"></div>
</div>
</body>
</html>

Ein Beispiel, dass es funktioniert gut für die Google Maps API version 2 ist hier http://www.virtualvideomap.com/

Auch auf http://maps.google.com sehen Sie youtube-videos im Info-Fenster funktioniert in Chrome und Safari, indem Sie auf "Mehr..." oben rechts von der Karte, und dann ein Haken bei "Videos".

InformationsquelleAutor Drew LeSueur | 2010-09-12
Schreibe einen Kommentar