我的第一个想法是添加一个来宾处理程序,并在新闻发布时收听..但是当使用图形叠加层渲染简单标记时,我没有看到任何UIView
在使用中。正确的方法是什么?谢谢
这就是我正在使用的:
AGSSimpleMarkerSymbol *symbol = [[AGSSimpleMarkerSymbol alloc] initWithStyle:AGSSimpleMarkerSymbolStyleCircle color:UIColor.redColor size:20];
AGSPoint *point = [[AGSPoint alloc] initWithCLLocationCoordinate2D: *coords];
AGSGraphic *graphics = [[AGSGraphic alloc] initWithGeometry:point symbol:symbol attributes:nil];
[_agsGraphicsOverlay.graphics addObject:graphics];