1

iOS 用の新しい Google マップ API を試しており、Apple の MapKit で MKOverlay が行うのと同様のオーバーレイを追加できるようにする必要があります。

4

1 に答える 1

0
      let poly = GMSMutablePath()

    poly .addCoordinate(CLLocationCoordinate2DMake(newLocation.coordinate.latitude, newLocation.coordinate.longitude))

    let polygon = GMSPolygon()
        polygon .path = poly
    polygon.fillColor = UIColor.greenColor()

    polygon.strokeWidth = 4
     polygon.strokeColor = UIColor .redColor()
    polygon.map = self.mapView
于 2016-05-03T21:15:12.423 に答える