Arcgis API for Python: How to change Webmap popup/legend title

516
0
04-04-2020 05:22 PM
AlexisAguirre1
New Contributor

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 = pd.DataFrame.spatial.from_xy(
    df = df,
    x_column = "dec_long_va",
    y_column = "dec_lat_va",
)

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? 

0 Kudos
0 Replies