Spaces:
Sleeping
Sleeping
Added index.html
Browse files- .gitignore +1 -1
- index.html +39 -0
.gitignore
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
__pycache__/
|
3 |
*.py[cod]
|
4 |
*$py.class
|
5 |
-
*.html
|
6 |
private/
|
7 |
|
8 |
# C extensions
|
|
|
2 |
__pycache__/
|
3 |
*.py[cod]
|
4 |
*$py.class
|
5 |
+
# *.html
|
6 |
private/
|
7 |
|
8 |
# C extensions
|
index.html
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Your app name</title>
|
5 |
+
<style type="text/css">
|
6 |
+
html {
|
7 |
+
overflow: auto;
|
8 |
+
}
|
9 |
+
html,
|
10 |
+
body,
|
11 |
+
div,
|
12 |
+
iframe {
|
13 |
+
margin: 0px;
|
14 |
+
padding: 0px;
|
15 |
+
height: 100%;
|
16 |
+
border: none;
|
17 |
+
}
|
18 |
+
iframe {
|
19 |
+
display: block;
|
20 |
+
width: 100%;
|
21 |
+
border: none;
|
22 |
+
overflow-y: auto;
|
23 |
+
overflow-x: hidden;
|
24 |
+
}
|
25 |
+
</style>
|
26 |
+
</head>
|
27 |
+
<body>
|
28 |
+
<iframe
|
29 |
+
src="https://share.streamlit.io/giswqs/streamlit-geospatial/app.py"
|
30 |
+
frameborder="0"
|
31 |
+
marginheight="0"
|
32 |
+
marginwidth="0"
|
33 |
+
width="100%"
|
34 |
+
height="100%"
|
35 |
+
scrolling="auto"
|
36 |
+
>
|
37 |
+
</iframe>
|
38 |
+
</body>
|
39 |
+
</html>
|