I need assistance with a seemingly straightforward task:
- I create a circle on the map
- I attempt to change the circle's position
Below is the provided code:
var Circle1 = new nokia.maps.map.Circle(new nokia.maps.geo.Coordinate(49.68385, 8.60468), 2000,{pen: {strokeColor: "F76D", lineWidth: 2}, brush: {color: "#0FF6"}});
map.objects.add(Circle1)
My expectation for this segment of code:
Circle1.set("coordinate", [49.44, 8.44]);
This approach works for other objects such as SVG markers but appears ineffective for a simple circle.
Can anyone provide insight or guidance on how to resolve this issue?