]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/swf_controller.rb
fix indentation. Get teh api version from the constant, rather than hard coding it...
[rails.git] / app / controllers / swf_controller.rb
index 47f692b08a9b327bcb36b9a660bca6207a7841c3..a96e71d05ee4ef99f9e4ff9e882e29a3fc2d3194 100644 (file)
@@ -117,8 +117,8 @@ class SwfController < ApplicationController
        def startShape
                s =0.chr                                                                                # No fill styles
                s+=2.chr                                                                                # Two line styles
-               s+=packUI16(5) + 0.chr + 255.chr + 255.chr              # Width 5, RGB #00FFFF
-               s+=packUI16(5) + 255.chr + 0.chr + 255.chr              # Width 5, RGB #FF00FF
+               s+=packUI16(0) + 0.chr + 255.chr + 255.chr              # Width 5, RGB #00FFFF
+               s+=packUI16(0) + 255.chr + 0.chr + 255.chr              # Width 5, RGB #FF00FF
                s+=34.chr                                                                               # 2 fill, 2 line index bits
                s
        end
@@ -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)