My script works in chrome and firefox, though, it does raise some errors. Namely, in Firefox, when I hover over a element with a HoverIntent handler, it an error stating that a script is attempting to close the page. But, in Firefox, the page doesn't actually close. It stays open and everything works out just fine.
In IE, however, an alert dialog pops up which states that the script is trying to close the page.
How it should work: I have a list of items. When a user Hover(Intents) over any given list item, a corresponding information overlay should pop up on a Google Map. As far as I can tell, the problem is that IE is interpreting .close() to close the window, while I am using it to close an overlay in Google Maps. If that's the problem, how can I get around it.
Here's the script (the % signs are django context variables)
$(function(){
var latlng=new Array()
var map;
{
{% for post in pages.object_list %}
latlng[{{forloop.counter}}] = new google.maps.LatLng({{post.street_lat}}, {{post.street_long}});
{% endfor %}
//make map center NYC (geocoded result listed here for NYC)
var NYClatlng = new google.maps.LatLng(40.7143528, -74.0059731)
var myOptions = {
zoom: 10,
center:NYClatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map"), myOptions);
var image="{{site}}media/icon.png";
var infowindow=new Array();
var marker=new Array();
{% if pages.object_list %}
{% for post in pages.object_list %}
var contentString='.....some markup'
infowindow[{{forloop.counter}}]= new google.maps.InfoWindow({
content:contentString{{forloop.counter}}
});
marker[{{forloop.counter}}] = new google.maps.Marker({
position:latlng[{{forloop.counter}}],
map:map,
icon:image,
animation: google.maps.Animation.DROP,
title:"Click for more info",
});
google.maps.event.addListener(marker[{{forloop.counter}}],'click', function(){
$.each(infowindow, function(name, value){
this.close();
});
infowindow[{{forloop.counter}}].open(map,marker[{{forloop.counter}}]);
});
{% endfor %}
{% endif %}
}
//hoverintent open infowindows...small bug when user hovers away from entry and then returns to same entry
var entries=$('.entries')
var entryHover = function(event){
var number=$(event.target).attr('data-marker');
$.each(infowindow, function(name, value){
this.close();
});
infowindow[number].open(map,marker[number]);
map.setCenter(latlng[number]);
};
var exitHover=function(event){
$.each(infowindow, function(name, value){
this.close();
});
};
entries.hoverIntent({over:entryHover,out:exitHover});
/* Same as above but without hoverintent
$('.entries').mouseenter(function(){
var num=$(this).attr('data-marker');
$.each(infowindow, function(name, value){
this.close();
});
infowindow[num].open(map,marker[num]);
map.setCenter(latlng[num]);
});
$('.entries').mouseleave(function(){
$.each(infowindow, function(name, value){
this.close();
});
});
});
Thanks for any help!