在Google地图中设置多个标记

时间:2018-12-27 01:57:11

标签: ios objective-c swift google-maps

我有一个国家(latitude-longitude)列表,并为列表中的每个国家在我的地图上设置了一个标记。我使用Google Maps SDK

当我尝试仅在当前位置显示此标记时。在列表中的其他元素中没有出现标记。

1 个答案:

答案 0 :(得分:2)

每个GMSMarker都有一个地图属性,即需要在其中显示地图的地图。

这是一个有用的课程:

class MyCustomMap: GMSMapView {

var markers: [Marker]                   = [] // array of custom marker to be shown in the map
var defaultZoom: Float                  = 10 //default zoom level of the map

override func awakeFromNib() {
    super.awakeFromNib()

    settings.rotateGestures = true
    isMyLocationEnabled = true
    settings.setAllGesturesEnabled(true)

}

func removeAllMarkers() {

    for eachMarker in markers {
        eachMarker.map = nil
    }

}

/// Sets the zoom level of the map to show all the marker at once with in the screen
func showAllMarkers(for markers: [Marker]) {

    var bounds = GMSCoordinateBounds()
    for marker in markers {
        bounds = bounds.includingCoordinate(marker.position)
    }
    let update = GMSCameraUpdate.fit(bounds, withPadding: 100.0)
    animate(with: update)

}

// MARK: - Private

func createMarker(with marker: Marker) {
    markers.append(marker)
    marker.map = self
}

func createMarkers(with markers: [Marker]) {

    for eachMarker in markers {
       createMarker(with: eachMarker)
    }

}
}

以下标记是我的自定义标记,它继承了GMSMarker

class Marker : GMSMarker {

 }

此外,如果要在获取标记后尝试在当前位置显示标记,请使用经纬度CLLocationCoordinate2D的新标记并将其添加到地图中。

marker.map = your_mapview