Ouverture automatique infobulle google Map Ouverture automatique infobulle google Map
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Ouverture automatique infobulle google Map

Started by xav31, December 30, 2007, 04:37:02 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

xav31

Bonjour

Qui pourrait m'éclairer sur l'application Google Api ?

j'ai installé google map et je souhaite que sur la page http://www.quipollue.com/displayimage.php?album=random&cat=0&pos=-42 le marqueur de la carte s'ouvre automatiquement.
J'ai essayé ceci, mais l'infobulle est vide.
Je n'arrive pas  faire passer l'information dans le marqueur.
j'ai ajouté ceci :setTimeout("marker.openInfoWindowHtml().maximize()",0);
Si je supprime cette ligne, il faut cliquer sur le marqueur et ça fonctionne normalement.


<script type="text/javascript">
      //<![CDATA[
      if (GBrowserIsCompatible()) {
      
         //create map
         var map = new GMap2(document.getElementById("small_map"));
         map.setCenter(new GLatLng($latitude,$longitude), {$default_zoom_level});
         map.setMapType({$CONFIG['gmap_small_type']});
         map.setMapType(G_SATELLITE_MAP);
         map.addControl(new GSmallMapControl());
         map.addControl(new GMapTypeControl());
         
         // Creates a marker whose info window displays the file info
         function createMarker(point, content)
         
         {
            var marker = new GMarker(point);
            // Show this markers index in the info window when it is clicked
            var html = content;
            
            GEvent.addListener(marker, "click", function(){marker.openInfoWindowHtml(html);});
            setTimeout("marker.openInfoWindowHtml().maximize()",0);
            
            return marker;
         };
         //code output for points
         $point_code;
      }   else {
           alert("Sorry, the Google Maps API is not compatible with this browser");
      }
      //]]>
      </script>

??? ???
Xavier

François Keller

euh désolé, mais ici c'est un forum consacré à coppermine, pas à google map.
essayez plutôt du coté de google
Avez vous lu la DOC ? la FAQ ? et cherché sur le forum avant de poster ?
Did you read the DOC ? the FAQ ? and search the board before posting ?
Mon Blog

xav31