Markers not showing up in Internet Explorer 8
-
Hi,
I’ve a development site with WP Geo installed and it works fine in the major browsers except for Internet Explorer 8 where maps show up but no markers appear on the maps. Its running WP Geo 3.3.7 and has custom map markers set up through a very simple bespoke plugin…
add_filter( 'wpgeo_markers', 'foo_wpgeo_markers' ); function foo_wpgeo_markers( $markers ) { $markers[] = new WPGeo_Marker( 'marker1', // Identifier 'Marker 1', // Icon name 'Marker 1 image.', // Icon description 30, 23, 15, 11, // width, height, anchorx, anchor y plugins_url( 'images/marker1.gif' , __FILE__ ) ); $markers[] = new WPGeo_Marker( 'marker2', // Identifier 'Marker 2', // Icon name 'Marker 2 marker image.', // Icon description 16, 23, 8, 11, // width, height, anchorx, anchor y plugins_url( 'images/marker2.gif' , __FILE__ ) ); // You can add multiple markers by repeating the above return $markers; }
Any ideas what might be stopping the markers (including the default pin markers from showing).
Thanks
Mark
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Markers not showing up in Internet Explorer 8’ is closed to new replies.