OnFarmView commited on
Commit
17b5251
·
1 Parent(s): 5d64c55

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -19
app.py CHANGED
@@ -29,24 +29,7 @@ st.title("On Farm View")
29
  footer_content = """
30
  <!-- Footer content -->
31
  <p>&copy; 2023 On Farm View. All rights reserved.</p>
32
- <aside class="footer-right">
33
- <!-- Histats.com (div with counter) -->
34
- <div id="histats_counter"></div>
35
- <!-- Histats.com START (aync)-->
36
- <script type="text/javascript">
37
- var _Hasync= _Hasync|| [];
38
- _Hasync.push(['Histats.start', '1,4819636,4,29,115,60,00011111']);
39
- _Hasync.push(['Histats.fasi', '1']);
40
- _Hasync.push(['Histats.track_hits', '']);
41
- (function() {
42
- var hs = document.createElement('script'); hs.type = 'text/javascript'; hs.async = true;
43
- hs.src = ('//s10.histats.com/js15_as.js');
44
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hs);
45
- })();
46
- </script>
47
- <noscript><a href="/" target="_blank"><img src="//sstatic1.histats.com/0.gif?4819636&101" alt="hit tracker" border="0"></a></noscript>
48
- <!-- Histats.com END -->
49
- </aside>
50
  """
51
 
52
  st.sidebar.markdown(footer_content, unsafe_allow_html=True)
@@ -64,7 +47,7 @@ m = geemap.Map(
64
  plugin_Draw=True,
65
  Draw_export=True,
66
  locate_control=True,
67
- plugin_LatLngPopup=False, center=map_center, zoom=12,
68
  )
69
 
70
 
 
29
  footer_content = """
30
  <!-- Footer content -->
31
  <p>&copy; 2023 On Farm View. All rights reserved.</p>
32
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  """
34
 
35
  st.sidebar.markdown(footer_content, unsafe_allow_html=True)
 
47
  plugin_Draw=True,
48
  Draw_export=True,
49
  locate_control=True,
50
+ plugin_LatLngPopup=False, center=map_center, zoom=13,
51
  )
52
 
53