OpenLayers Editor (OLE) provides a set of controls for extended editing of spatial data. This is the new version of OLE which is based on OpenLayers 4. The old version using OpenLayers 2 can be found here.
Contributions are welcome! Feel free to add more controls and to extend the current functionality. Additionally, the build process is currently very basic and could be optimized. Translations would be nice, too.
- CAD tool for geometry alignment
- Drawing line, point and polygon features
- Moving and rotating geometries
- Modifying geometries
- Toolbar for activating and deactivating controls
For a demo, visit http://ole.geops.de.
- node & npm
- Clone this repository
- Install:
npm install
- Run:
npm start
- Open your browser and visit http://localhost:8080
var editor = new ole.Editor(map);
var cad = new ole.CadControl({
source: editLayer.getSource()
});
var draw = new ole.DrawControl({
source: editLayer.getSource()
});
editor.addControls([draw, cad]);
- Build:
npm run build
- Create doc:
npm run-script doc