You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classYourClassNameextendsHtmlOverlay{getItems(){return[<HtmlOverlayItemstyle={{ ...yourstylehere...}}key={ ... uniquekey... }coordinates={[-122.41914,37.77919]}>
You can have text and children like <div>...</div></HtmlOverlayItem>];}}
You need to extend HtmlOverlay and override getItems, where you
return an array of HtmlOverlayItem.
You need to provide a unique key and coordinates for each item.