[GIS] Looking for dissolve algorithm for Javascript

algorithmdissolvejavascriptpolygon

I have three adjacent polygons that together make up a larger shape. I need an algorithm that will dissolve the internal borders leaving only the outside border. An example would be a group of adjacent counties. I want to merge together all the county polygons and dissolve the internal borders so I'm left with just the outline of the state.

Best Answer

This is a pure Javascript api that performs Dissolve, also commonly called Union, and other spatial operations. It is based on Java Topology Suite. jsts

Related Question