I'm writing a annotation placement on map function, while in "onSingleTapConfirmed"
Below text can be placed on map
TextSymbol ts = new TextSymbol(14, "some text", BLUE, CENTER, MIDDLE);
currentTextGraphic = new Graphic(mapPoint, ts);
mGraphicsOverlay.getGraphics().add(currentTextGraphic);
Cascade the created text on map, when user try to edit it, it show up as a "Point" and after save, the text turned into point system, e.g. only below determination failled into.
if (graphic.getGeometry().getGeometryType() == GeometryType.POINT) {
Or may I know if any method to check the "point" had "TextSymbol" before so that I can further udpate?