Add an API call to find the map tiles which have changed in a given period.

This commit is contained in:
Tom Hughes 2007-10-09 23:41:26 +00:00
parent a485b23738
commit d29a319ab0
2 changed files with 47 additions and 0 deletions

View file

@ -32,6 +32,8 @@ ActionController::Routing::Routes.draw do |map|
map.connect "api/#{API_VERSION}/map", :controller => 'api', :action => 'map'
map.connect "api/#{API_VERSION}/trackpoints", :controller => 'api', :action => 'trackpoints'
map.connect "api/#{API_VERSION}/changes", :controller => 'api', :action => 'changes'
map.connect "api/#{API_VERSION}/search", :controller => 'search', :action => 'search_all'
map.connect "api/#{API_VERSION}/ways/search", :controller => 'search', :action => 'search_ways'