You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GeoHashBox corners are currently calculated like this:
this.corners.topleft = new GLatLng(this.box.latitude[0], this.box.longitude[0]);
this.corners.topright = new GLatLng(this.box.latitude[1], this.box.longitude[0]);
this.corners.bottomright = new GLatLng(this.box.latitude[1], this.box.longitude[1]);
this.corners.bottomleft = new GLatLng(this.box.latitude[0], this.box.longitude[1]);
Shouldn't this be:
this.corners.topleft = new GLatLng(this.box.latitude[1], this.box.longitude[0]);
this.corners.topright = new GLatLng(this.box.latitude[1], this.box.longitude[1]);
this.corners.bottomright = new GLatLng(this.box.latitude[0], this.box.longitude[1]);
this.corners.bottomleft = new GLatLng(this.box.latitude[0], this.box.longitude[0]);
?
The text was updated successfully, but these errors were encountered:
The GeoHashBox corners are currently calculated like this:
this.corners.topleft = new GLatLng(this.box.latitude[0], this.box.longitude[0]);
this.corners.topright = new GLatLng(this.box.latitude[1], this.box.longitude[0]);
this.corners.bottomright = new GLatLng(this.box.latitude[1], this.box.longitude[1]);
this.corners.bottomleft = new GLatLng(this.box.latitude[0], this.box.longitude[1]);
Shouldn't this be:
this.corners.topleft = new GLatLng(this.box.latitude[1], this.box.longitude[0]);
this.corners.topright = new GLatLng(this.box.latitude[1], this.box.longitude[1]);
this.corners.bottomright = new GLatLng(this.box.latitude[0], this.box.longitude[1]);
this.corners.bottomleft = new GLatLng(this.box.latitude[0], this.box.longitude[0]);
?
The text was updated successfully, but these errors were encountered: