1
0
Fork 0
blog.kempkens.io/_posts/2014-03-23-buffered-polyline.md
2014-11-30 21:47:18 +01:00

1.8 KiB

layout title description date category tags comments
post Buffered Polyline Blow up a polyline to search inside the generated polygon. 2014-03-23 20:00:00 CET posts
javascript
programming
english
true

At work, we needed a simple way to buffer a polyline in order to search for stuff along the route from A to B. I'll explain how we used Google's Maps API and JSTS in order to achieve this easily.

The first thing we had to do, was to "transform" each element in the overview_path (which the DirectionsService returns) to GeoJSON, because that's what JSTS understands.

{% highlight javascript linenos %} var overviewPath = response.routes[0].overview_path, overviewPathGeo = []; for(var i = 0; i < overviewPath.length; i++) { overviewPathGeo.push( [overviewPath[i].lng(), overviewPath[i].lat()] ); } {% endhighlight %}

The next step was getting overviewPathGeo into JSTS and letting it do the work of buffering the line.

{% highlight javascript linenos %} var distance = 10/111.12, // Roughly 10km geoInput = { type: "LineString", coordinates: overviewPathGeo }; var geoReader = new jsts.io.GeoJSONReader(), geoWriter = new jsts.io.GeoJSONWriter(); var geometry = geoReader.read(geoInput).buffer(distance); var polygon = geoWriter.write(geometry); {% endhighlight %}

The polygon variable now contains a polygon that neatly fits around the overviewPath, with a distance (buffer size) of roughly 10km.

Since it is nested, you need to call polygon.coordinates[0] in order to get back the coordinates of the polygon (as GeoJSON).

You could then use the the coordinates to draw the generated polygon on the map (along with the route), in order to produce something like this:

![Buffered Polyline]({{ site.baseurl }}public/images/buffered-polyline-1.png)