Spaces:
Running on CPU Upgrade

osv5m commited on
Commit
d4ba7fb
1 Parent(s): d8af37a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -9
app.py CHANGED
@@ -68,6 +68,7 @@ h3 {
68
  display:block;
69
  font-family: custom;
70
  font-weight: normal;
 
71
  }
72
  """
73
 
@@ -306,19 +307,11 @@ class Engine(object):
306
  map = Map(location=BASE_LOCATION, zoom_start=1)
307
  map._name, map._id = 'visu', '1'
308
 
309
- icon_star = BeautifyIcon(
310
- icon='star',
311
- border_width=10,
312
- inner_icon_style='color:red;font-size:20px;margin-top:0;',
313
- background_color='transparent',
314
- border_color='transparent',
315
- icon_anchor=(0, 0)
316
- )
317
  feature_group = FeatureGroup(name='Ground Truth')
318
  Marker(
319
  location=[true_lat, true_lon],
320
  popup="True location",
321
- icon=icon_star,
322
  ).add_to(feature_group)
323
  map.add_child(feature_group)
324
 
 
68
  display:block;
69
  font-family: custom;
70
  font-weight: normal;
71
+ font-size: 1.5em;
72
  }
73
  """
74
 
 
307
  map = Map(location=BASE_LOCATION, zoom_start=1)
308
  map._name, map._id = 'visu', '1'
309
 
 
 
 
 
 
 
 
 
310
  feature_group = FeatureGroup(name='Ground Truth')
311
  Marker(
312
  location=[true_lat, true_lon],
313
  popup="True location",
314
+ icon_color='red',
315
  ).add_to(feature_group)
316
  map.add_child(feature_group)
317