0

如何将具有不同内容的弹出式花式框放在不同的标记中?我已经设法设置了幻想框,但您可以看到它是两个标记的相同内容。我想找到一种方法为每个制造商在我的幻想箱中放置不同的内容。

<script type='text/javascript'>//<![CDATA[ 
$(function(){
function initialize() {

    var mapOptions = {
      zoom: 4,
       disableDefaultUI: true,
      center: new google.maps.LatLng(45.35, 4.98),
      mapTypeId: google.maps.MapTypeId.TERRAIN
    }
    var map = new google.maps.Map(document.getElementById('map_canvas'),
                                  mapOptions);

    addMarkerWithWindow("Lemans", new google.maps.LatLng(48.006922, 0.20874), map);
    addMarkerWithWindow("Paris", new google.maps.LatLng(48.856291, 2.352705), map);
}

function addMarkerWithWindow(name, coordinate, map) {
 $.fancybox({
    content: url
});

var image = 'rss.png';
var marker = new google.maps.Marker({
  map: map,
  icon: image,
  position: coordinate
});

    var styles = [
   {
      featureType: "all",
      stylers: [
        { saturation: -15 },
        { lightness: -10 },
      ]
    },

            ];
map.setOptions({styles: styles});

 <!-- ne pas utiliser --> 
  var url= "http://www.fancyapps.com/fancybox/";
  <!-- ne pas utiliser -->

      var div = document.createElement('DIV');
    div.innerHTML = 'hello';

   google.maps.event.addListener(marker, 'click', function() {

    $.fancybox({
    maxWidth    : 800,
    maxHeight   : 600,
    href : "rssddd/FeedEk_demo.html",
    type : 'iframe'

    });
});
  }
  initialize();
   });//]]>  
   google.maps.event.addDomListener(window, 'load', initialisation);
     </script>

演示:http : //ps3land.franceserv.com/

4

1 回答 1

1

将第四个参数传递给addMarkerWithWindow(),例如:

addMarkerWithWindow("Lemans", new google.maps.LatLng(48.006922, 0.20874), map,
                    'http://lemans.org');
addMarkerWithWindow("Paris", new google.maps.LatLng(48.856291, 2.352705), map,
                    'http://parisinfo.com');

使参数在函数内部可访问:

函数 addMarkerWithWindow(名称、坐标、地图、href){
  //你的代码
}

并将其用作 fancyBox 的 href 选项:

$.fancybox({
  最大宽度:800,
  最大高度:600,
  链接:链接,
  类型:'iframe'
});

于 2013-02-08T16:44:07.037 回答