<div>Mapserver Users,</div>
<div>&nbsp;</div>
<div>I am working with PHP Mapscript and am having issues with my points and circles showing up correctly. Take the following section from my mapfile:</div>
<div>&nbsp;</div>
<div>LAYER</div>
<div>&nbsp; NAME mypoints</div>
<div>&nbsp; TYPE POINT</div>
<div>&nbsp; STATUS DEFAULT</div>
<div>&nbsp; LABELCACHE ON</div>
<div>&nbsp; LABELMAXSCALE 100000</div>
<div>&nbsp; CLASS</div>
<div>&nbsp;&nbsp;&nbsp; COLOR 0 255 0</div>
<div>&nbsp;&nbsp;&nbsp; NAME &quot;mypoints&quot;</div>
<div>&nbsp;&nbsp;&nbsp; SYMBOL &quot;circle&quot;</div>
<div>&nbsp;&nbsp;&nbsp; SIZE 3</div>
<div>&nbsp;&nbsp;&nbsp; LABEL</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; COLOR 180 60 60</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TYPE BITMAP</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SIZE tiny</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; POSITION UR</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OFFSET 2 -2</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ANTIALIAS true</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PARTIALS true</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; BUFFER 0</div>
<div>&nbsp;&nbsp;&nbsp; END</div>
<div>&nbsp; END</div>
<div>END</div>
<div>&nbsp;</div>
<div>Now, in PHP I do the following:</div>
<div>&nbsp;</div>
<div>$layer = $map-&gt;getLayerByName('mypoints');</div>
<div>$point_label = &quot;This is a Label&quot;;</div>
<div>$pointObj = ms_newPointObj();</div>
<div>$pointObj-&gt;setXY($y, $x);</div>
<div>$pointObj-&gt;draw($map, $layer, $image, 0, $point_label);</div>
<div>&nbsp;</div>
<div>-----------------------------</div>
<div>&nbsp;</div>
<div>The issue is that when the points show up on the map they are *not* the correct color. However, they are showing up in the legend as the bright green they should be. </div>
<div>&nbsp;</div>
<div>When plotted on the map they are a dull green or even gray.</div>
<div>&nbsp;</div>
<div>Has anyone ever seen this issue before? </div>
<div>Please help!</div>
<div>&nbsp;</div>
<div>&nbsp;</div>