SimpleMarkerSymbol - Outlines and Shadows
Brought to you by:
spoerri
Just found 2 more bugs for the imsSimpleMarkerSymbol
class, also in the returnTag method.
if (isset($this->Outline)) $tagStr.=' outline="'.$this-
>Outline.'" ';
if (isset($this->Shadow)) $tagStr.=' shadow="'.$this-
>Shadow.'" ';
only printed "Array" in the AxlRequest. They should be:
if (isset($this->Outline)) {$tagStr.=' outline="'.implode
(',',$this->Outline).'" ';}
if (isset($this->Shadow)) {$tagStr.=' shadow="'.implode
(',',$this->Shadow).'" ';}