I see that in the 4.24 release of the JavaScript API tooltip and label support was added for SceneViews https://developers.arcgis.com/javascript/latest/sample-code/sketch-3d/#tooltiplabel
Is this snappy, cool, useful capability something that will be brought over to MapViews? If so is there an anticipated release version?
Solved! Go to Solution.
Hi Tyler, thanks for the feedback. Yes, we intend on adding this functionality to 2d/MapView in the upcoming 4.25 release. This is slated for October time frame. Hope this helps.
Heather
Hi Tyler, thanks for the feedback. Yes, we intend on adding this functionality to 2d/MapView in the upcoming 4.25 release. This is slated for October time frame. Hope this helps.
Heather
Hi all,
How can we implement sketchTooltipOptions in 2D mapview while using sketch...API reference is not so clear...Any sample will be useful.
Thanks
This is available now with 4.26
const sketchVM = new SketchViewModel({
view: view,
layer: graphicsLayer
});
//enable the tooltip options and turn on the helpMessage
sketchVM.tooltipOptions.enabled = true
sketchVM.tooltipOptions.visibleElements.helpMessage = true