vstar1411 / leaflet_assignment

0 stars 0 forks source link

Calculating Distance and refactoring code. #2

Closed vstar1411 closed 9 months ago

vstar1411 commented 9 months ago

Calculating distance based on the formula below var scale = Math.pow(2, (_this.maxNativeZoom - this._map.getZoom())); start_x = scale; start_y = scale; end_x = scale; end_y = scale; distance = math.sqrt((start_x - end_x) 2 + (start_x - end_y) 2) * mpp