0
私はGoogleマップ上の破線の円を描画するために一生懸命しようとしてきたが、助けて何かを見つけることができませんでした...Googleマップ上の破線の円を描く:iOSの
を私がしてきました
が
... Googleマップ上の破線の円を描画するためのいくつかの解決策を見つける日間文字通りインターネット上で探して、プレーンな円を描くことは、私はすべての時間を得るものの答えよりも、残念ながら他のことはここに私がやったことだ: 上記のためコードは次のようになります。これは、必要とされるものである
import UIKit
import GoogleMaps
import GooglePlaces
class ViewController: UIViewController
{
@IBOutlet weak var gmsMapView: GMSMapView!
override func viewDidLoad()
{
super.viewDidLoad()
gmsMapView.isMyLocationEnabled = true
gmsMapView.settings.myLocationButton = true
gmsMapView.animate(toZoom: 10.0)
gmsMapView.animate(toLocation: CLLocationCoordinate2D(latitude: 40.709677, longitude: -74.011088))
let circleCenter = CLLocationCoordinate2D(latitude: 40.709677, longitude: -74.011088)
let circle = GMSCircle(position: circleCenter, radius: 5000)
circle.strokeWidth = 2
circle.strokeColor = UIColor.blue
circle.map = gmsMapView
}
override func didReceiveMemoryWarning(){
super.didReceiveMemoryWarning()
}
}
:そのことはできませんGMSCircleで
Wonderfull ... 大変です!仕事は本当にありがとうございました。私は実際にすべての希望を失ってしまいました。 –
サークルに入れてもいいですか?それらのダッシュを意味する.. –