Skip to content

Commit

Permalink
[BUILD]
Browse files Browse the repository at this point in the history
  • Loading branch information
Viglino committed Jun 19, 2024
1 parent 48acebf commit f3e58bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/ol-ext.js
Original file line number Diff line number Diff line change
Expand Up @@ -28452,7 +28452,7 @@ ol.interaction.Split = class olinteractionSplit extends ol.interaction.Interacti
* @param {ol.Collection.<ol.Feature>} options.features A collection of feature to be split (replace source target).
* @param {ol.Collection.<ol.Feature>} options.triggerFeatures Any newly created or modified features from this collection will be used to split features on the target source (replace triggerSource).
* @param {function|undefined} options.filter a filter that takes a feature and return true if the feature is eligible for splitting, default always split.
* @param {function|undefined} options.tolerance Distance between the calculated intersection and a vertex on the source geometry below which the existing vertex will be used for the split. Default is 1e-10.
* @param {function|undefined} options.tolerance Distance between the calculated intersection and a vertex on the source geometry below which the existing vertex will be used for the split. Default is 1e-3.
* @todo verify auto intersection on features that split.
*/
ol.interaction.Splitter = class olinteractionSplitter extends ol.interaction.Interaction {
Expand Down Expand Up @@ -28496,7 +28496,7 @@ ol.interaction.Splitter = class olinteractionSplitter extends ol.interaction.Int
this.source_.on("removefeature", this.onRemoveFeature.bind(this))
}
// Split tolerance between the calculated intersection and the geometry
this.tolerance_ = options.tolerance || 1e-10
this.tolerance_ = options.tolerance || 1e-3
// Get all features candidate
this.filterSplit_ = options.filter || function () { return true }
}
Expand Down
2 changes: 1 addition & 1 deletion dist/ol-ext.min.js

Large diffs are not rendered by default.

0 comments on commit f3e58bc

Please sign in to comment.