I want to have a simple text popup that is displayed when the mouse moves over a pin. The pin is a SymbolLayer. The popup needs to display 2 lines of text specific to the pin.
I know I can do this using MouseEnter & MouseLeave on the symbol. However, the SymbolLayerOptions.TextOptions
leads me to believe there's a way to display text with a pin. Is there a way to have this text display when the mouse is over it?
And if not, what is the purpose of the TextOptions
?
Generally, the
TextOptions
on the symbol layer is for rendering text on the map, like a label. A good example of doing this is when you want to put a number on top of an icon to help users cross reference points with a list. Symbols could be only text (icon disabled) and is what the map does to display labels for locations/roads. This text is rendered into the map via WebGL and thus, is not a popup. It is a commonly used feature but I haven't seen it used for your scenario. It is technically possible to use events to display this text on mouse hover but this is likely more work than needed and may not be the most performant as it would cause the map to re-render ever time the text is showed/hidden.If you want to show a popup of the text on mouse hover, use a reusable popup and keep it simple. Here is a code sample for this scenario: https://samples.azuremaps.com/?sample=show-popup-on-hover
Summary code block of the sample here: