Yunus Serhat Bıçakçı commited on
Commit
b624c44
·
1 Parent(s): 0e0090c
data/{london_boroughs.json → london_boroughs.geojson} RENAMED
File without changes
data/us_regions.geojson ADDED
The diff for this file is too large to render. See raw diff
 
pages/5_📍_Marker_Cluster.py CHANGED
@@ -22,11 +22,11 @@ st.title("Marker Cluster")
22
  with st.expander("See source code"):
23
  with st.echo():
24
 
25
- m = leafmap.Map(center=[51.50, -0.1], zoom=11)
26
  cities = 'https://raw.githubusercontent.com/giswqs/leafmap/master/examples/data/us_cities.csv'
27
- regions = 'https://huggingface.co/spaces/yunusserhat/Crime-Map/blob/main/data/london_boroughs.json'
28
 
29
- m.add_geojson(regions, layer_name='London Boroughs')
30
  m.add_points_from_xy(
31
  cities,
32
  x="longitude",
 
22
  with st.expander("See source code"):
23
  with st.echo():
24
 
25
+ m = leafmap.Map(center=[40, -100], zoom=4)
26
  cities = 'https://raw.githubusercontent.com/giswqs/leafmap/master/examples/data/us_cities.csv'
27
+ regions = 'https://huggingface.co/spaces/yunusserhat/Crime-Map/blob/main/data/london_boroughs.geojson'
28
 
29
+ m.add_geojson(regions, layer_name='US Regions')
30
  m.add_points_from_xy(
31
  cities,
32
  x="longitude",