Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/10/2011, 13:35
Avatar de Heiroon
Heiroon
 
Fecha de Ingreso: junio-2010
Ubicación: Caracas, Venezuela - Por ahora...
Mensajes: 495
Antigüedad: 14 años, 10 meses
Puntos: 63
Exclamación ie7 me arroja "Argumento Inválido" con esta funcion

Tál cual como dice en el titulo, tengo una función e IE7 me da el error "Argumento inválido". Quisiera ver si me pueden ayudar a ver que es lo ilegal que explorer no me deja hacer. Gracias

Aca esta la función:

Código Javascript:
Ver original
  1. etiquetaVectorPopup : function(icono, contenidoHtml, anchoEtiqueta, altoEtiqueta)
  2.         {  
  3.             mapOL.events.unregister("zoomend", mapOL, function(){});
  4.            
  5.             if(!icono) return false;
  6.            
  7.             var ancho = anchoEtiqueta || null;
  8.             var alto = altoEtiqueta || null;
  9.             var tamano = null;
  10.            
  11.             var anchoAlto = (ancho != null && alto != null);
  12.             if(anchoAlto){
  13.                 tamano = new OpenLayers.Size(parseFloat(ancho), parseFloat(alto));             
  14.             }
  15.            
  16.             var x = icono.geometry.x, y = icono.geometry.y;
  17.            
  18.             var res = mapOL.getResolutionForZoom(mapOL.getZoom());
  19.            
  20.             var dx = (anchoEtiqueta / 2) * (res);
  21.             var dy = (12) * (res);
  22.            
  23.             var lonlat = new OpenLayers.LonLat(parseFloat(x - dx), parseFloat(y - dy));
  24.            
  25.             var popup = new OpenLayers.Popup(null,
  26.                         lonlat,
  27.                         tamano,
  28.                         contenidoHtml,
  29.                         false);
  30.  
  31.             mapOL.addPopup(popup);         
  32.             popup.setBackgroundColor("#EFEBC2");
  33.             popup.setBorder("1px solid grey");         
  34.            
  35.             mapOL.events.register("zoomend", mapOL, function(){
  36.                 main.vehicle.AddLayerVehicles();                   
  37.             });
  38.            
  39.             return popup;
  40.            
  41.         },

Gracias y saludos! ;)
__________________
Gmail : [email protected]
Twitter: @heiroon

I'm back!