Module: CartoHelper

Defined in:
app/helpers/carto_helper.rb

Instance Method Summary collapse

Instance Method Details

Creates a Carto OneClick link, using the configuration link

Parameters:

  • file_link (String)

Returns:

  • (String)


7
8
9
10
11
12
13
14
# File 'app/helpers/carto_helper.rb', line 7

def carto_link(file_link)
  params = URI.encode_www_form(
    file: file_link,
    provider: carto_provider,
    logo: Settings.APPLICATION_LOGO_URL
  )
  carto_oneclick_host + '?' + params
end

#carto_providerObject

Removes blank space from provider to accomodate Carto OneClick



19
20
21
# File 'app/helpers/carto_helper.rb', line 19

def carto_provider
  application_name.delete(' ')
end