diff --git a/src/components/Map.vue b/src/components/Map.vue index 82413b9..341bc78 100644 --- a/src/components/Map.vue +++ b/src/components/Map.vue @@ -49,7 +49,7 @@ export default { radiusFromAccuracy() { if (this.accuracy) { return this.accuracy / ( - (constants.EARTH_RADIUS * 2 * Math.PI * Math.cos(this.lat)) / + (constants.EARTH_RADIUS * 2 * Math.PI * Math.cos(this.lat * (Math.PI / 180))) / (2 ** (this.zoom + 8)) ); }