我正在使用适用于 iOS 的 Google Maps API,我想这样做,所以当您点击 GMSCircle 时,它会弹出我在其他地方编码的一些小东西。我已将圆圈设置为“可点击”,但我找不到需要设置或制作的内容来监听点击。我用什么?
CLLocationCoordinate2D circleCenter = CLLocationCoordinate2DMake(10,10);
GMSCircle *circ = [GMSCircle circleWithPosition:circleCenter
radius:10];
circ.tappable = true;
[circ setFillColor:[UIColor colorWithRed:1 green:0 blue:0 alpha:.5]];
circ.map = mapView_;