bugfixes: copy/paste + renaming
This commit is contained in:
parent
5d2a4cab5f
commit
eb1cfdbab0
1 changed files with 4 additions and 4 deletions
|
@ -854,8 +854,8 @@ L.U.Polyline = L.Polyline.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
getMeasure: function (shape) {
|
getMeasure: function (shape) {
|
||||||
var measure = L.GeoUtil.lineLength(this.map, shape || this._defaultShape());
|
var length = L.GeoUtil.lineLength(this.map, shape || this._defaultShape());
|
||||||
return L.GeoUtil.readableDistance(measure, this.map.measureTools.getMeasureUnit());
|
return L.GeoUtil.readableDistance(length, this.map.measureTools.getMeasureUnit());
|
||||||
},
|
},
|
||||||
|
|
||||||
getContextMenuEditItems: function (e) {
|
getContextMenuEditItems: function (e) {
|
||||||
|
@ -1005,8 +1005,8 @@ L.U.Polygon = L.Polygon.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
getMeasure: function (shape) {
|
getMeasure: function (shape) {
|
||||||
var measure = L.GeoUtil.lineLength(this.map, shape || this._defaultShape());
|
var area = L.GeoUtil.geodesicArea(shape || this._defaultShape());
|
||||||
return L.GeoUtil.readableArea(measure, this.map.measureTools.getMeasureUnit());
|
return L.GeoUtil.readableArea(area, this.map.measureTools.getMeasureUnit());
|
||||||
},
|
},
|
||||||
|
|
||||||
getContextMenuEditItems: function (e) {
|
getContextMenuEditItems: function (e) {
|
||||||
|
|
Loading…
Reference in a new issue