mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 17:52:55 +00:00
12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
iD.Node = iD.Entity.extend({
|
|
type: "node",
|
|
|
|
extent: function() {
|
|
return [this.loc, this.loc];
|
|
},
|
|
|
|
geometry: function() {
|
|
return this._poi ? 'point' : 'vertex';
|
|
}
|
|
});
|