Update comments
This commit is contained in:
parent
7c0c29b345
commit
bf4dc57194
1 changed files with 13 additions and 0 deletions
|
@ -6,10 +6,23 @@ import { OsmTags } from "../../../Models/OsmFeature"
|
||||||
|
|
||||||
export default class ChangeTagAction extends OsmChangeAction {
|
export default class ChangeTagAction extends OsmChangeAction {
|
||||||
private readonly _elementId: string
|
private readonly _elementId: string
|
||||||
|
/**
|
||||||
|
* The tags to apply onto the object
|
||||||
|
*/
|
||||||
private readonly _tagsFilter: TagsFilter
|
private readonly _tagsFilter: TagsFilter
|
||||||
|
/**
|
||||||
|
* The current tags of the object to change
|
||||||
|
*/
|
||||||
private readonly _currentTags: Record<string, string> | OsmTags
|
private readonly _currentTags: Record<string, string> | OsmTags
|
||||||
private readonly _meta: { theme: string; changeType: string }
|
private readonly _meta: { theme: string; changeType: string }
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param elementId: the element to change
|
||||||
|
* @param tagsFilter: the tags to apply
|
||||||
|
* @param currentTags: the current tags of the object
|
||||||
|
* @param meta: some metainformation
|
||||||
|
*/
|
||||||
constructor(
|
constructor(
|
||||||
elementId: string,
|
elementId: string,
|
||||||
tagsFilter: TagsFilter,
|
tagsFilter: TagsFilter,
|
||||||
|
|
Loading…
Reference in a new issue