SimpleMarkerSymbol - returnTag Typo
Brought to you by:
spoerri
I couldn't get SimpleMarkerSymbol to return a map.
After examining the AxlResponse which was an error
instead of an actul Axl string, I started looking into
phparcims_symbol.php and discovered a missing space
after the SIMPLEMARKERSYMBOL tag.
On line 457 of phparcims_symbol.php,
$tagStr='<SIMPLEMARKERSYMBOL';
should be:
$tagStr='<SIMPLEMARKERSYMBOL ';
(space at the end). The AxlRequest looked like:
<SIMPLEMARKERSYMBOLantialiasing="false"
transparency="1" overlap="true" width="6"
color="255,255,0" type="circle" usecentroid="1" >
instead of:
<SIMPLEMARKERSYMBOL antialiasing="false"
transparency="1" overlap="true" width="6"
color="255,255,0" type="circle" usecentroid="1" >