mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-16 18:52:57 +00:00
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
iD.Relation = iD.Entity.extend({
|
|
type: "relation",
|
|
members: [],
|
|
|
|
extent: function() {
|
|
return [[NaN, NaN], [NaN, NaN]];
|
|
},
|
|
|
|
geometry: function() {
|
|
return 'relation';
|
|
}
|
|
});
|