0
私はすべての注釈ピンを自動的に開こうとしているので、ユーザーは実際に触れる必要はありません。私は(アニメーション注釈:true)メソッドのmapView.selectAnnotationを使用してみました。この方法配列リストから自動的にアノテーションを開く
filteredLocations.map {
(location) in
let annotation = MGLPointAnnotation()
annotation.title = location.Neighborhood
annotation.coordinate = CLLocationCoordinate2D(latitude: location.latitude, longitude: location.longitude)
mapView.addAnnotation(annotation)
mapView.setCenter((mapView.userLocation?.coordinate)!,zoomLevel:11, animated:true)
mapView.selectAnnotation(annotation, animated: true)
を使用して自動的に注釈ピンを生成していますが、何もしていないようです。
この回答では、Googleのために正しいかもしれないが、問題はMapboxについてです。 – friedbunny