From 382bd2abd8bb9f0c07bebfd042c733a469d52930 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Thu, 17 Oct 2013 10:30:36 -0400 Subject: [PATCH] Use actual projection --- js/id/renderer/map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/id/renderer/map.js b/js/id/renderer/map.js index 0be6a01a0..706eb5934 100644 --- a/js/id/renderer/map.js +++ b/js/id/renderer/map.js @@ -16,9 +16,9 @@ iD.Map = function(context) { points = iD.svg.Points(roundedProjection, context), vertices = iD.svg.Vertices(roundedProjection, context), lines = iD.svg.Lines(projection), - areas = iD.svg.Areas(roundedProjection), + areas = iD.svg.Areas(projection), midpoints = iD.svg.Midpoints(roundedProjection, context), - labels = iD.svg.Labels(roundedProjection, context), + labels = iD.svg.Labels(projection, context), supersurface, surface, mouse, mousemove;