Markers are not showing in IE7 & IE8 when using custom icons.
Debug:
After debug the code the following was producing an error (the comma at the end does not belong):
Code: Select all
var phocaImage3PlgPM1 = new google.maps.MarkerImage('http://maps.google.com/mapfiles/ms/icons/blue-dot.png');
var phocaImageShape3PlgPM1 = {
coord: [0,0,25,30],
type: 'rect',
};
File administrator/components/com_phocamaps/helpers/phocamapsmap.php Line 433 change from
Code: Select all
if (isset($iObjSh[0])) {$js.=' type: \''.$iObjSh[0].'\','."\n";} else { $js.=' \'\',';}
Code: Select all
if (isset($iObjSh[0])) {$js.=' type: \''.$iObjSh[0].'\''."\n";} else { $js.=' \'\'';}