如何为Google Maps IOS设置可见区域/缩放级别以显示所有添加到Mapview的标记

Ran*_*G V 5 google-maps ios google-maps-sdk-ios

我在ios应用中使用过Google地图,我想根据我在地图上进行的搜索动态设置缩放级别。基本上是通过搜索城市名称或经纬度查询来添加图钉。每次搜索后都添加了图钉,我需要通过我最近进行的搜索显示所有添加的标记。

Dip*_*ang 5

@IBOutlet weak var mapView: GMSMapView!

let camera = GMSCameraPosition.cameraWithLatitude(23.0793, longitude:  
72.4957, zoom: 5)
mapView.camera = camera
mapView.delegate = self
mapView.myLocationEnabled = true

*** arry has dictionary object which has value of Latitude and Longitude. ***
let path = GMSMutablePath()

for i in 0..<arry.count {

   let dict = arry[i] as! [String:AnyObject]
   let latTemp =  dict["latitude"] as! Double
   let longTemp =  dict["longitude"] as! Double

   let marker = GMSMarker()
   marker.position = CLLocationCoordinate2D(latitude: latTemp, longitude: longTemp)
   marker.title = "Austrilia"
   marker.appearAnimation = kGMSMarkerAnimationNone
   marker.map = self.mapView

  path.addCoordinate(CLLocationCoordinate2DMake(latTemp, longTemp))

} 

 let bounds = GMSCoordinateBounds(path: path)
 self.mapView!.animateWithCameraUpdate(GMSCameraUpdate.fitBounds(bounds, withPadding: 50.0))
Run Code Online (Sandbox Code Playgroud)


fri*_*nny 1

请参阅此答案,了解迭代给定标记数组然后相应设置边界的简单方法。