Yunus Serhat Bıçakçı commited on
Commit
d996af4
·
1 Parent(s): 17fb10c
Files changed (1) hide show
  1. pages/1_🔥_Heatmap.py +2 -2
pages/1_🔥_Heatmap.py CHANGED
@@ -21,13 +21,13 @@ st.title("Heatmap")
21
 
22
  with st.expander("See source code"):
23
  with st.echo():
24
- tweets = "https://raw.githubusercontent.com/giswqs/leafmap/master/examples/data/us_cities.csv"
25
  m = leafmap.Map(center=[51.50, -0.1], zoom=10, tiles="stamentoner")
26
  m.add_heatmap(
27
  tweets,
28
  latitude="latitude",
29
  longitude="longitude",
30
- value="pop_max",
31
  name="Heat map",
32
  radius=20,
33
  )
 
21
 
22
  with st.expander("See source code"):
23
  with st.echo():
24
+ tweets = "https://raw.githubusercontent.com/yunusserhat/Github/main/data/boroughs_count_df.csv"
25
  m = leafmap.Map(center=[51.50, -0.1], zoom=10, tiles="stamentoner")
26
  m.add_heatmap(
27
  tweets,
28
  latitude="latitude",
29
  longitude="longitude",
30
+ value="count",
31
  name="Heat map",
32
  radius=20,
33
  )