]> git.openstreetmap.org Git - rails.git/commitdiff
various bits
authorSteve Coast <steve@asklater.com>
Fri, 17 Nov 2006 20:56:01 +0000 (20:56 +0000)
committerSteve Coast <steve@asklater.com>
Fri, 17 Nov 2006 20:56:01 +0000 (20:56 +0000)
app/controllers/api_controller.rb
app/controllers/node_controller.rb

index 99afae6729e98a46be9dc27118db686c09617602..9e3839697a5f099f74500f50cea76d367ec80115 100644 (file)
@@ -1,7 +1,26 @@
 class ApiController < ApplicationController
 
   def map
+    bbox = params['bbox']
+    unless bbox and bbox.count(',') == 3
+      render :nothing => true, :status => 400
+      return
+    end
 
+    bbox = bbox.split(',')
+
+    min_lat = bbox[0].to_f
+    min_lon = bbox[1].to_f
+    max_lat = bbox[2].to_f
+    max_lon = bbox[3].to_f
+
+    nodes = Node.find(:all, :conditions => ['latitude > ? AND longitude > ? AND latitude < ? AND longitude < ? AND visible = 1', min_lat, min_lon, max_lat, max_lon])
+
+    node_ids = "(#{nodes.collect {|node| node.id }})"
+
+    segments = Segment.find(:all, :condtions => ['node_a in ? or node_b in ?', node_ids, node_ids])
+    render :text => node_ids.join(',')
+    return
 
     doc = XML::Document.new
     doc.encoding = 'UTF-8' 
@@ -22,6 +41,4 @@ class ApiController < ApplicationController
     #root << el1
   end
 
-
-
 end
index c5b4f279b54ee16bf80b34ba336c090643b68837..416d1794fe72b4b88e39ff88e2ec29ddc3a02feb 100644 (file)
@@ -15,6 +15,7 @@ class NodeController < ApplicationController
 
       if node
         node.user_id = @user.id
+        node.visible = 1
         if node.save_with_history
           render :text => node.id
         else