From 88f469eec179d587f9539dd4b99032b847fc16f8 Mon Sep 17 00:00:00 2001 From: Richard Fairhurst Date: Sun, 3 Feb 2008 16:11:24 +0000 Subject: [PATCH] fix for resizable Potlatch --- app/controllers/swf_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/swf_controller.rb b/app/controllers/swf_controller.rb index 47f692b08..54f8382ea 100644 --- a/app/controllers/swf_controller.rb +++ b/app/controllers/swf_controller.rb @@ -187,11 +187,11 @@ class SwfController < ApplicationController # (this is duplicated from amf_controller, should probably share) def lat2coord(a,basey,masterscale) - -(lat2y(a)-basey)*masterscale+250 + -(lat2y(a)-basey)*masterscale end def long2coord(a,baselong,masterscale) - (a-baselong)*masterscale+350 + (a-baselong)*masterscale end def lat2y(a) -- 2.39.5