We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63dfebd commit e0607a4Copy full SHA for e0607a4
arcgis_map_sdk_web/lib/src/layer_controller.dart
@@ -1035,6 +1035,13 @@ class LayerController {
1035
) {
1036
if (resultsLength < 1 ||
1037
hitTestResult.results?[0].graphic?.attributes == null) {
1038
+ for (final Graphic graphic in _graphics.keys) {
1039
+ graphic.onHover?.call(false);
1040
+ if (_graphics[graphic] == HoveredState.hovered) {
1041
+ graphic.onExit?.call();
1042
+ _graphics[graphic] = HoveredState.notHovered;
1043
+ }
1044
1045
return;
1046
}
1047
final String? hitTestId = hitTestResult.results?[0].graphic?.attributes.id;
0 commit comments