Hello Esri community,
I'm working on a Java desktop application using ArcGIS Java runtime SDK v100.7.0. In my MapView GraphicsOverlay, I've added a circular Polygon graphic using ellipseGeodesic(GeodesicEllipseParameters parameters) method keeping it's center point as my ship/vessel's location Point. Now as my ship moves, I would like this Polygon to move with it as well. I want to know if there is any convenient way to move a Polygon Geometry from one Point to another by just specifying the next given Point as center to this Polygon. The vessel and the circular Polygon graphic are manipulated by another class in my code which doesn't have access to the circle's radius or such parameters which can be used to draft a new Polygon geometry so I'd want to manipulate and move the same object (using it's center Point only) without replacing with a new one.
Thanks in advance.