We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I know how to change the input field's value when the polygon is changed.
that.map.on('editable:editing', ( e: any ) => { that.vertexMarkersLayer.clearLayers(); that.setVertexMarkers(e.layer.getLatLngs()); that.setNewPolygonCoordinates(e.layer.getLatLngs()); ... })
But is there a way to live update the polygon points in map when a point's value is changed via input field? So no clicking or dragging with mouse.
On the API page there's a reset() method. Is that it? If yes, how to use it? Any example would be really helpful.
reset()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I know how to change the input field's value when the polygon is changed.
But is there a way to live update the polygon points in map when a point's value is changed via input field? So no clicking or dragging with mouse.
On the API page there's a
reset()
method. Is that it? If yes, how to use it? Any example would be really helpful.The text was updated successfully, but these errors were encountered: