中心的GMSMarker图标(iOS)

时间:2015-03-10 04:05:22

标签: ios google-maps google-maps-markers center gmsmapview

我刚从Apple地图切换到Google地图。我似乎无法找到答案的问题是如何让GMSMarker的图标从中心开始,而不是从图像的底部开始。

我的意思是当前位置点图标以其要表达的坐标为中心开始。但是,GMSMarkers图标从图标的底部开始。

3 个答案:

答案 0 :(得分:54)

您可以使用属性groundAnchor更改标记图标的开始位置。

Google Maps SDK for iOS文档

  

地面锚点指定图标图像中的点   锚定在标记在地球表面的位置。这点   在连续空间[0.0,1.0] x [0.0,1.0]内指定,   其中(0,0)是图像的左上角,(1,1)是   右下角。

示例

  

以下示例将标记旋转90°。设置groundAnchor   属性为0.5,0.5导致标记围绕其中心旋转,   而不是它的基础。

CLLocationCoordinate2D position = CLLocationCoordinate2DMake(51.5, -0.127);
CLLocationDegrees degrees = 90;
GMSMarker *london = [GMSMarker markerWithPosition:position];
london.groundAnchor = CGPointMake(0.5, 0.5);
london.rotation = degrees;
london.map = mapView_;

答案 1 :(得分:6)

我非常仔细地阅读了Google地图文档后想出了如何做到这一点。我相信这就是它的目的。

UIImage *markerIcon = [UIImage imageNamed:@"markericon.png"];
markerIcon = [markerIcon imageWithAlignmentRectInsets:UIEdgeInsetsMake(0, 0, (markerIcon.size.height/2), 0)];
self.marker.icon = markerIcon;

答案 2 :(得分:2)

在Swift 5中

    let marker: GMSMarker = GMSMarker() // Allocating Marker
    marker.title = "Your location" // Setting title
    marker.snippet = "Sub title" // Setting sub title
    marker.icon = UIImage(named: "radio") // Marker icon
    marker.appearAnimation = .pop // Appearing animation. default
    marker.position = CLLocationCoordinate2D.init(latitude: 26.8289443, longitude: 75.8056178)
    
    marker.groundAnchor = CGPoint(x: 0.5, y: 0.5)  // this is the answer of this question
            
    DispatchQueue.main.async { // Setting marker on mapview in main thread.
        marker.map = self.googleMapView // Setting marker on Mapview
    }