12 lines
221 B
Ruby
12 lines
221 B
Ruby
# Geocoding
|
|
#
|
|
# Access to OSM controls
|
|
class MapsController < ApplicationController
|
|
def index
|
|
respond_to do |format|
|
|
format.html
|
|
format.json { render json: Event.moderated.future.geo }
|
|
end
|
|
end
|
|
end
|