我可以在 iOS 6.1 模拟器上显示 AGSPictureMarkerSymbol*,但是在使用设备(iPhone 4、iOS 6.1)进行调试时,即使代码是“读取”并且没有出现警告或异常,标记也不会出现。代码如下:
AGSPictureMarkerSymbol* locker = [[AGSPictureMarkerSymbol alloc] initWithImageNamed:@"locker.png"];
AGSPoint* point = [[AGSPoint alloc] initWithX:coord.x y:coord.y spatialReference:self.mapView.spatialReference];
[self.lockersLayer addGraphic:[[AGSGraphic alloc] initWithGeometry:point symbol:locker attributes:nil infoTemplateDelegate:nil]];
作为参考,这self.lockersLayer
也有很多,AGSTextSymbol*
它们显示得很好。
谢谢你。