2
votes
0answers
186 views

Creating a Geodesic Polyline Buffer in OpenLayers

I have a feeling that the answer is going to be 'You can't do that without some very complex coding' but I thought I'd go for it anyway. I recently asked a question on how to create a Polyline Buffer ...
2
votes
2answers
1k views

Creating a Polyline Buffer in OpenLayers

I was wondering if there was a way to create a buffer around a polyline feature in OpenLayers. I have created a tool that allows the user to draw a circle buffer zone of whatever size and style they ...
5
votes
3answers
955 views

How can I display with OpenLayers the geometry returned from a ST_Buffer in POSTGIS?

Im using PostGIS, GeoServer and OpenLayers, and the thing is that i want to display the geometry result from a query like this: SELECT ST_Buffer(ST_GeomFromText('POINT(100 100)'), 500); To perform ...