Move marker and Move text

364
3
09-26-2012 04:12 AM
kartheekpanyam
New Contributor
how to move text from one place to another place using  Arcgis map.

(void) mapView: (AGSMapView *)  mapView didMoveTapAndHoldAtPoint:(CGPoint) screen mapPoint:  (AGSPoint *) mappoint
graphics: (NSDictionary *) graphics  



i used this method but Text cant move one place to another place
0 Kudos
3 Replies
NimeshJarecha
Esri Regular Contributor
Is it a text symbol? or label in a map layer? If you are using text symbol for graphic then you'll have to move the geometry to desired location in order to move the text (symbol).

Regards,
Nimesh
0 Kudos
kartheekpanyam
New Contributor
Thanks for reply. I used  text symbol. which method i need to use ???
0 Kudos
NimeshJarecha
Esri Regular Contributor
In order to move the location of graphic, you need to set the new geometry to the graphic.

graphic.geometry = newGeometry;

Regards,
Nimesh
0 Kudos