如何使用swift在谷歌地图上显示自定义图像

时间:2017-06-23 16:20:11

标签: ios iphone swift google-maps google-maps-markers

如何在Google地图上显示these kind of car images in picture 根据纬度和经度?

我尝试了以下代码but I got the following incorrect result

 let marker1 = GMSMarker()
        let marker2 = GMSMarker()
        let marker3 = GMSMarker()
        let marker4 = GMSMarker()
        let marker5 = GMSMarker()
        let markerImage = UIImage(named: "white_car_icon copy.png")!.withRenderingMode(.alwaysTemplate)

        let markerView = UIImageView(image: markerImage)
        marker1.position = CLLocationCoordinate2D(latitude: 12.9077923, longitude: 77.586962)
        marker2.position = CLLocationCoordinate2D(latitude: 12.9077923, longitude: 77.586962)
        marker3.position = CLLocationCoordinate2D(latitude: 12.9077856, longitude: 77.58695950000001)
        marker4.position = CLLocationCoordinate2D(latitude: 12.90782858, longitude: 77.58678956)
        marker5.position = CLLocationCoordinate2D(latitude: 12.90780888511306, longitude: 77.58487723767757)
        marker1.iconView = markerView
        marker1.map = mapView
        marker2.iconView = markerView
        marker2.map = mapView
        marker3.iconView = markerView
        marker3.map = mapView
        marker4.iconView = markerView
        marker4.map = mapView
        marker5.iconView = markerView
        marker5.map = mapView

如果有人能帮助我,我会感谢你。我过去4天一直在尝试,但没有得到正确的输出。

1 个答案:

答案 0 :(得分:2)

正确的选项是使用图标属性

 marker5.icon = UIImage(named: "paradero")

使用此功能,您可以设置所需的任何图像。