Details
Description
The svg output from the WMS is not formatting points properly for me. This might be an SLD problem, since points are not showing up properly in jpeg output, but it might be more.
basically the output is:
------------------------------------------------------
</g>
<g id="DC:obs" class="normal">
<defs>
<circle id='point' cx='0' cy='0' r='0.5%' fill='blue' stroke="red"/>
</defs>
<use x="-82.3" y="28.9"/>
<use x="-82.3" y="28.9"/>
<use x="-82.3" y="28.9"/>
<use x="-82.3" y="28.9"/>
<use x="-82.3" y="28.9"/>
<use x="-82.4" y="28.9"/>
<use x="-82.4" y="28.7">
What I believe it should be is:
--------------------------------------------------
</g>
<g id="DC:obs" class="normal">
<defs>
<circle id='point' cx='0' cy='0' r='0.5%' fill='blue' stroke="red"/>
</defs>
<use x="-82.3" y="28.9" xlink:href="#point"/>
<use x="-82.3" y="28.9" xlink:href="#point"/>
<use x="-82.3" y="28.9" xlink:href="#point"/>
<use x="-82.4" y="28.9" xlink:href="#point"/>
<use x="-82.4" y="28.7" xlink:href="#point"/>
--------------------------------------------------
Good Luck!
-
Hide
- geoserver.jar
- 19/Nov/05 3:13 AM
- 687 kB
- Chris Holmes
-
- META-INF/MANIFEST.MF 0.1 kB
- META-INF/.../org.vfny.geoserver.wfs.FeatureResponseDelegateProducerSpi 0.1 kB
- META-INF/.../org.vfny.geoserver.wms.GetLegendGraphicProducerSpi 0.2 kB
- META-INF/.../org.vfny.geoserver.wms.GetMapProducerFactorySpi 0.3 kB
- org/vfny/.../ExceptionHandler.class 0.5 kB
- org/vfny/geoserver/Request.class 4 kB
- org/vfny/geoserver/Response.class 0.5 kB
- org/vfny/.../ServiceException.class 5 kB
- org/vfny/.../action/ConfigAction.class 4 kB
- org/vfny/.../action/DemoAction.class 2 kB
- org/vfny/.../action/DemoRequestAction.class 2 kB
- org/vfny/.../action/FreeLocksAction.class 2 kB
- org/vfny/.../action/FreeMemoryAction.class 2 kB
- org/vfny/.../action/GeoServerAction.class 2 kB
- org/vfny/.../action/HTMLEncoder.class 7 kB
- org/vfny/.../action/LoadXMLAction.class 6 kB
- org/vfny/.../action/LoginAction.class 3 kB
- org/vfny/.../action/LoginEditAction.class 2 kB
- org/vfny/.../action/LogoutAction.class 1 kB
- org/vfny/.../action/MapPreviewAction.class 17 kB
- org/vfny/.../action/SaveXMLAction.class 6 kB
- org/vfny/.../action/SrsHelpAction.class 3 kB
- org/vfny/.../action/UpdateGSAction.class 5 kB
- org/.../CalculateBoundingBoxAction.class 3 kB
- org/.../DataDataStoresEditorAction.class 8 kB
- org/vfny/.../DataDataStoresNewAction.class 2 kB
- org/.../DataDataStoresSelectAction.class 3 kB
- org/vfny/.../DataFeatureTypesNewAction.class 5 kB
- org/.../DataFeatureTypesSelectAction.class 4 kB
- org/.../DataNamespacesEditorAction.class 2 kB
Issue Links
- is duplicated by
-
GEOS-457
Bug with points symbols in SVG
-
Activity
This file will let you try out the fix before the next rc, it's r3933 in svn, and I think should fix the issue.
Sorry for the delay on this one, just wasn't able to test. This should fix it in 1.3.x.
Looks like the same issue, weirdly it's in the code and commented out, I think I just never was able to test for some reason? Testing now.