the map display to be used with the map editor.
options to customize the map editor.
The HTMLElement used by the Map Editor.
enable or disable the editor.
true to enable or false to disable the editor
the current active state
Add an EventListener to the editor. Valid Events are: "tap", "dbltap", "pointerup", "pointerenter", "pointerleave", "featureUnselected", "error", "dragStart", "dragStop".
Additional details about the different events:
A string representing the event type to listen for.
the listener function that will be called when an event of the specific type occurs
Add an Error EventListener to the editor.
the EventListener type is "error"
the listener function that will be called when an Error occurs
Add a feature to the editor.
the feature to be added to the map.
the layer the feature should be added to.
offsets the geometry of the feature.
the feature that was successfully added to the map
Add features to the editor.
the features to be added to the map.
the layer the features should be added to.
offsets the geometry of the features.
the features that were successfully added to the map
Add features to map editor.
a map where the layerId is the key and the value are the feature(s) that should be added to the respective layer.
allows to translate features by origin offset.
the feature(s) that were successfully added to map
Add a hook function that will be called during the execution of the editing operation.
Possible operation types are: 'Navlink.disconnect', 'Navlink.split', 'Feature.remove', 'Coordinates.remove'
the type of the operation
the hook function that should be called
If a provider is defined, the hook is only called if features of the provider are affected by the operation
add a TileLayer to the editor and enable editing of its map data.
the layer to be added to editor.
true indicates layer has been added successfully, otherwise false.
This method registers an observer for the property named by the caller. Supported observables: 'active', 'ready', 'history.current', 'history.length', 'changes.length'
The name of the property to observe.
the observer function that is called when the value of the observable changes.
Clears the current selected feature.
the cleared Feature or null of none is selected.
Get the current value of a specific editor option.
the value of the specific editor option.
Get a deep copy of the currently active editor options.
the editor options as a key/value map.
Set the value of a specific editor option.
the name of the option to set
the value that should be set for the specific option
Set one or more editor options.
the option key/value map that should be merged with the existing editor options.
Create a FeatureContainer.
feature container
Destroy the map editor
Export data of all modified features.
A JSON encoded string containing all modified features and its respective layer information.
Convert geographical coordinate to a pixel coordinate relative to the current mapview on screen.
the geographical coordinate
The pixel coordinate.
This method retrieves the current value of an observable property.
The name of the property whose value is to be retrieved
value - The retrieved value of the property or undefined if no such property exists
get the DrawingBoard to enable mouse/touch based drawing of the geometry for Line, Navlink or Area features.
Get a feature by id and layer.
the id of the feature
the id of the layer or the layer itself to which the feature belongs.
the found feature in the map, otherwise null.
Get all registered hooks for the desired operation.
the type of the operation
Returns the overlay TileLayer used for user interaction with the editable map features.
the TileLayer containing all "UI" features used for user interaction with the map features.
get the tool for selecting ranges on Navlink features.
Get the current zoomLevel.
The current zoomLevel of the map.
Import Features to the editor that have previously been exported with Editor.export.
A JSON encoded string containing all modified features and its respective layer information.
Get information of all modified Features of the editor.
Array of modified objects.
Convert a pixel position relative to the current mapview on screen to a geographical coordinate.
The coordinate on screen in pixels.
the geographical coordinate
Redo the latest change operation(s). One change operation can contain multiple feature modifications.
The changes are stored and managed locally. Submitting Editor.submit modified Feature(s) to the remote will clear the local change history.
the number of change operations to redo.
Remove an EventListener from the layer. Valid Events are: "tap", "dbltap", "pointerup", "pointerenter", "pointerleave", "featureUnselected", "error", "dragStart", "dragStop".
A string which specifies the type of event for which to remove an event listener.
The listener function of the event handler to remove from the editor.
Remove an Error EventListener from the layer.
the EventListener type is "error".
The error event listener to be remove from the editor.
Remove a specific hook for the desired editing operation.
Possible operation types are: 'Navlink.disconnect', 'Navlink.split', 'Feature.remove', 'Coordinates.remove'
the type of the operation
the hook function to remove
If a provider is defined, the hook is only called if features of the provider are affected by the operation
Remove a layer from the editor.
layer - the layer to be removed from the map editor. Editing get disabled for the layer.
true indicates layer is removed successfully, otherwise false.
This method removes the observer for the property. Supported observables: 'active', 'ready', 'history.current', 'history.length', 'changes.length'
The name of the property that should no longer be observed
The observer function to be removed
Revert changes, fetch data from repository.
Search for feature(s) in the provider.
configure the search
function for optional result filtering.
search feature by id.
Array of feature ids to search.
Layers to search in.
Callback function for "remote" search.
Geographical center point of the circle to search in. options.radius must be defined.
Radius of the circle in meters, it is used in "point" search.
Geographical Rectangle to search in. [minLon, minLat, maxLon, maxLat] | GeoRect.
Force the data provider(s) to do remote search if no result is found in local cache.
array containing the found features
Sets the desired zoomLevel.
Submit changes, return object Ids of submitted objects. Reload and render objects.
submit options
callback function that gets called in case of an error.
callback function which returns additional information about the commit process. If id(s) of the submitted feature(s) had to be changed by the remote datasource a "permanentIDMap" is provided.
transactionId that will be attached to all features of the submit operation.
true, if there are changes to be submitted, false otherwise.
Convert a PixelPoint on the screen or a GeoPoint to a geographical Coordinate in GeoJSON format [number,number,number?].
the pixel and/or geographical coordinate(s) to convert.
Convert PixelPoints or a GeoPoints to a geographical Coordinates in GeoJSON format [number,number,number?].
the pixel and/or geographical coordinate(s) to convert.
Convert PixelPoints or a GeoPoints to a geographical Coordinates in GeoJSON format [number,number,number?].
the pixel and/or geographical coordinate(s) to convert.
Convert PixelPoints or a GeoPoints to a geographical Coordinates in GeoJSON format [number,number,number?].
the pixel and/or geographical coordinate(s) to convert.
Undo the latest change operation(s). One change operation can contain multiple feature modifications. The changes are stored and managed locally.
Submitting Editor.submit modified Feature(s) to the remote will clear the local change history.
the number of change operations to undo.
Generated using TypeDoc
The Editor is an API for editing map data that can be used to easily access, add, remove and edit various types of map data. Changes can be automatically synchronized with various remote backends services. It offers various tools for manipulating map-data through user interaction.