Hello,
While trying to display some data, I encountered this issue where the tittle of the popups and the legend displayed are a bunch of random numbers. I've been scouring the documentation trying to find out how to change the name displayed there but so far I've had no success.
I think the main issue is that the data that I'm passing comes from a dataframe and not from a named Layer or Feature. So either the name is generated randomly or it's some reference to some object id or something.
IE:
sdf <SPAN class="operator token">=</SPAN> pd<SPAN class="punctuation token">.</SPAN>DataFrame<SPAN class="punctuation token">.</SPAN>spatial<SPAN class="punctuation token">.</SPAN>from_xy<SPAN class="punctuation token">(</SPAN>
df <SPAN class="operator token">=</SPAN> df<SPAN class="punctuation token">,</SPAN>
x_column <SPAN class="operator token">=</SPAN> <SPAN class="string token">"dec_long_va"</SPAN><SPAN class="punctuation token">,</SPAN>
y_column <SPAN class="operator token">=</SPAN> <SPAN class="string token">"dec_lat_va"</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>That results in the random numbers shown on the map:

Is there a way to change the title displayed there without having to export the in-memory dataframe into some other kind of feature?