0
我一直在努力地試圖借鑑谷歌地圖虛線圓圈,但找不到任何幫助...虛線圓圈:iOS的
我一直尋找在互聯網字面上天找到借鑑的GoogleMaps虛線圓圈,可惜不是畫一個普通的圓形之外的一些解決方案是在回答我所得到的每一次..
這裏就是我所做的:
代碼上面是:
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()
}
}
這是需要什麼:
很不錯... 真棒.. !!它做了這份工作非常感謝你..我實際上失去了所有的希望.. –
我們可以讓他們在圈.. ??我的意思是這些破折號.. –