sinjhan / php-google-map-api

Automatically exported from code.google.com/p/php-google-map-api
0 stars 0 forks source link

Suggested change to map marker load failures. #96

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I changed these two "die()" to "echo+return" instead, it provides a gracious 
failure that I can then respond to in other code.

die('GoogleMapAPI:createMarkerIcon: Error reading image: ' . $iconImage);
TO
echo ('GoogleMapAPI:createMarkerIcon: Error reading image: ' . $iconImage);   
return;

AND

die('GoogleMapAPI:createMarkerIcon: Error reading shadow image: ' . 
$iconShadowImage);

TO

echo ('GoogleMapAPI:createMarkerIcon: Error reading shadow image: ' . 
$iconShadowImage);
return; 

Original issue reported on code.google.com by anderson...@gmail.com on 12 Aug 2014 at 6:33