JavaScript Library – Best Pure JavaScript Library for Geometry Operations

javascriptopen-source-gis

Does anyone know of a pure JavaScript library for doing geometry operations such as buffer, union, intersects, etc? I want to play with doing these operations in the browser. It looks like GeoScriptJS has some dependencies.

Best Answer

I'm pretty much done with my port of JTS which is a pure JS port and it's available at https://github.com/bjornharrtell/jsts

At the current version (0.9.1) it supports the core functionality of JTS by which I mean predicates and overlays.

Related Question