You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 1, 2025. It is now read-only.
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