-
Notifications
You must be signed in to change notification settings - Fork 2
/
ui.R
162 lines (120 loc) · 4.43 KB
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
library(shiny)
library(shinydashboard)
library(shinyWidgets)
# library(dashboardthemes)
# library(thematic)
library(readr)
library(sf)
library(leaflet)
library(dplyr)
library(plotly)
options(encoding = "UTF-8")
#texte sourcen
source("text.R", local=TRUE)
dashboardPage(
dashboardHeader(title = "Mobilitätsindex ZH"),
dashboardSidebar(
HTML("<br> <p> Verkehrsaufkommen und <br> Mobilitätsverhalten <br> in der Stadt Zürich </p>"),
#HTML("<br> <p> Wöchentliche Aktualisierung </p>"),
hr(),
HTML("<p><big> Inhalt </big></p>"),
sidebarMenu(
menuItem("Was ist der Mobilitätsindex ZH?",
href = "#wasist",
newtab = FALSE),
menuItem("Verkehrsaufkommen",
href = "#verkehrsaufkommen",
newtab = FALSE),
menuItem("Wo wurde gemessen?",
href = "#woist",
newtab = FALSE)
),
# HTML("<p> Was ist der Mobilitätsindex ZH?</p>"),
# HTML("<p> Verkehrsaufkommen</p>"),
# HTML("<p> Wo wurde gemessen?</p>"),
#
hr(),
HTML("<p><big> Links </big></p>"),
sidebarMenu(
menuItem("Code/Methodik",
icon = icon("file-code"),
href = "https://github.com/christophbaur/mobilitaets_index_zh"),
menuItem("Github",
icon = icon("github"),
href = "https://github.com/christophbaur"),
menuItem("LinkedIn",
icon = icon("linkedin-in"),
href = "https://www.linkedin.com/in/christoph-baur-89759a202/")
)
),
dashboardBody(
# shinyDashboardThemes(
# theme = "grey_dark"
# ),
tags$head(tags$style(HTML('
/* body */
.content-wrapper, .right-side {
background-color: #FFFFFF
}
.sidebar {
color: #FFF;
position: fixed;
width: 220px;
white-space: nowrap;
overflow: visible;
}
.main-header {
position: fixed;
width:100%;
}
.content {
padding-top: 60px;
}
'))),
fluidPage(
fluidRow(
#um beim normalen Browsern die Breite zu begrenzen column eingefügt
column(
width=8, offset = 2, align="left",
#scrollposition
span(id="wasist"),
#extra space
h1(HTML("<br>")),
h1("Was ist der Mobilitätsindex ZH?",align = "left"),
p(text_einleitung),
#scrollposition
span(id = "verkehrsaufkommen"),
#extra space
h1(HTML("<br>")),
h1("Veränderung des Verkehrsaufkommens",align = "left"),
p(text_verk_allg),
h2("Mit Wetterinfo"),
plotlyOutput("verk_aufk",
height="100%"),
p(text_verk_wetter),
h2("Mit Veränderung der Bewegungsmuster",align = "left"),
selectInput("google_sel",
label="Google Indikator",
choices = c("Freizeit/Einkauf",
"Läden des täglichen Bedarfs",
"Bahnhöfe und Haltestellen",
"Arbeitsplätze",
"Wohnorte")),
plotlyOutput("google_ind",
height="100%"),
p(text_google_ind),
#scrollposition
span(id="woist"),
#extra space
h1(HTML("<br>")),
h1("Wo wurde gemessen?"),
p(text_karte),
leafletOutput("karte"),
h1(HTML("<br>")),
hr(),
p(text_fusszeile)
)#end column
)
)
)
)