inbo / riparias-prep

Preparatory scripts and data management for the RIPARIAS workflow
MIT License
0 stars 1 forks source link

Add logos to map application #22

Closed SanderDevisscher closed 3 years ago

SanderDevisscher commented 3 years ago

as rightly pointed out by @bramdhondt: @SanderDevisscher is there a possibility to include the RIPARIAS and Life logo (and perhaps INBOs smaller at the bottom somewhere) on the map application? You can find logos on the google drive of the project (under communication). It should look like this:

image

Originally posted by @timadriaens in https://github.com/inbo/riparias-prep/issues/9#issuecomment-834474224

SanderDevisscher commented 3 years ago

Should be possible by adding:

ui <- fluidPage(
  titlePanel("My Shiny App"),
  sidebarLayout(
    sidebarPanel(),
    mainPanel(
      img(src = "rstudio.png", height = 140, width = 400)
    )
  )
)

to the ui. I'll have to find out a way to position them on the page but I like a challenge.