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)


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

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



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

def carto_provider
  application_name.delete(" ")
end