From 069a72b5e7ecf17f927a78704d5a123e1f76133e Mon Sep 17 00:00:00 2001 From: euzuro Date: Wed, 21 May 2008 13:23:30 +0000 Subject: [PATCH] add feature to markers layer, not to image layer. thanks to stephen w. for spotting this. git-svn-id: http://svn.openlayers.org/trunk/openlayers@7236 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- examples/popupMatrix.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/popupMatrix.html b/examples/popupMatrix.html index 0e85cf4b2d..0829c44a04 100644 --- a/examples/popupMatrix.html +++ b/examples/popupMatrix.html @@ -841,7 +841,7 @@ */ function addMarker(ll, popupClass, popupContentHTML, closeBox, overflow) { - var feature = new OpenLayers.Feature(layer, ll); + var feature = new OpenLayers.Feature(markers, ll); feature.closeBox = closeBox; feature.popupClass = popupClass; feature.data.popupContentHTML = popupContentHTML;