Skip to content

Commit

Permalink
Converted to dot notation - fixes jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
jguthrie100 committed Oct 6, 2018
1 parent e976f31 commit 31c4461
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/assets/javascripts/index/history.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,19 @@ OSM.History = function(map) {
if (changeset.bbox) {
var minProjection = map.project(L.latLng(changeset.bbox.minlat, changeset.bbox.minlon)),
maxProjection = map.project(L.latLng(changeset.bbox.maxlat, changeset.bbox.maxlon)),
xGap = maxProjection["x"] - minProjection["x"],
yGap = minProjection["y"] - maxProjection["y"],
xGap = maxProjection.x - minProjection.x,
yGap = minProjection.y - maxProjection.y,
minXGap = 40, // Min width/height of changeset in pixels
minYGap = 40;

if (xGap < minXGap) {
minProjection["x"] -= ((minXGap - xGap) / 2);
maxProjection["x"] += ((minXGap - xGap) / 2);
minProjection.x -= ((minXGap - xGap) / 2);
maxProjection.x += ((minXGap - xGap) / 2);
}

if (yGap < minYGap) {
minProjection["y"] += ((minYGap - yGap) / 2);
maxProjection["y"] -= ((minYGap - yGap) / 2);
minProjection.y += ((minYGap - yGap) / 2);
maxProjection.y -= ((minYGap - yGap) / 2);
}

var minUnProjection = map.unproject(minProjection),
Expand Down

0 comments on commit 31c4461

Please sign in to comment.