In 200.8 the signal Graphic::geometryChanged was deprecated.
We used this signal to update the viewpoint of a Map View whenever a selected point geometry changes its position, e.g. to make the viewpoint follow the geometry:
connect(&graphic, &Graphic::geometryChanged, this, [this, &graphic]() { updateViewpoint(graphic.geometry()); });Now that Graphic::geometryChanged is deprecated we need to replicate this behavior.
For Scene Views there is the OrbitGeoElementCameraController to follow a Graphic, but for Map View we have not found something similar which is why we implemented it ourselves with the Graphic:geometryChanged signal.
Is there a replacement for Graphic::geometryChanged? Or is there a better way to follow a moving graphic with the viewpoint?