How to get particular Marker id in Google Map iOS SDK

瘦欲@ 提交于 2020-01-01 05:36:08

问题


I am working on google map iOS sdk. Here I create multiple markers in separate location co-ordinates.

Now I need to add identifier such like TAG for all markers to perform action for particular marker.

If TAG or some other identifier option is not available in google map iOS sdk, please suggest me how to archive it.

Thanks in Advance.


回答1:


What I do is that I simply inherit the GMSMarker and add whatever data I need to it like this, I guess this is the best and easiest option you have.

@interface ATGoogleMapsSelectiveMarker : GMSMarker

@property (nonatomic) int markerID;
@property (nonatomic) int order;
@property (strong, nonatomic) NSObject* referenceObject;
@property (nonatomic) BOOL selected;

@end

EDIT:

I thought it is clear but I'll continue on how to get the data... When you create your markers and add them to the map, you create ATGoogleMapsSelectiveMarker and add it to the map after you fill it with everything you need, then you register any class you want as a delegate which implements GMSMapViewDelegate and you implement this method

- (BOOL)mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker {
    // Here you are sure that your marker object is of type ATGoogleMapsSelectiveMarker but it won't harm to double check
   if ([marker isKindOfClass:[ATGoogleMapsSelectiveMarker class]]) {
       ATGoogleMapsSelectiveMarker* parsedMarker = (ATGoogleMapsSelectiveMarker*)marker;
       NSLog(@"%d", parsedMarker.markerId);
   }

    return YES;
}



回答2:


Swift solution :

You can add identifier or any thing to a marker by setting a value for a key for the marker:

marker.setValue("20", forKey: "id")

and you can get it later using :

marker.value(forKey: "id")

Or

My way to do it is by create an extension for the GMSMarker and using the userData property to make the GMSMarker fits my need, for me I want to add each marker with instance of Branch class (map with markers for branches of some company) and this is the way that I did:

extension GMSMarker {
    var branch: Branch {
        set(branch) {
            self.userData = branch
        }

        get {
           return self.userData as! Branch
       }
   }
}

so when I set the marker property I set it like this:

marker.branch = someBranch

Isn't that clearer and more readable than marker.userData = someBranch ??



来源:https://stackoverflow.com/questions/30848294/how-to-get-particular-marker-id-in-google-map-ios-sdk

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!