# Geocoding # # Access to OSM controls class MapsController < ApplicationController has_scope :region, :locality, :tag def index respond_to do |format| format.html { render layout: 'iframe' if params[:iframe] } format.json { render json: apply_scopes(Event.moderated.future.geo) } end end end