I’m trying to visualize the all launch records in a dataframe on folium map
# Add marker_cluster to current site_map site_map.add_child(marker_cluster) # for each row in spacex_df data frame # create a Marker object with its coordinate # and customize the Marker’s icon property to indicate if this launch was successed or failed, # e.g., icon=folium.Icon(color=’white’, icon_color=row[‘marker_color’] for index, record in spacex_df.iterrows(): # TODO: Create and add a Marker […]