如何添加「放置圖釘」並在Google Map iOS上放置上述動畫? 我只能在SDK中找到標記,而appearAnimation
屬性只提供彈出式動畫。如何在谷歌地圖iOS中添加放置圖釘
2
A
回答
2
使用MapKit的MKAnnotationView。從Using the Standard Annotation Views文檔:
MKAnnotationView* aView = [[[MKAnnotationView alloc] initWithAnnotation:annotation
reuseIdentifier:@"MyCustomAnnotation"] autorelease];
0
如果設置了標題或摘錄標記的屬性,則敲擊時,提示會顯示。
marker.title = @"Hello World";
和/或
marker.snippet = @"Hello Snippet";
1
在它說的appearAnimation屬性GMSMarker Class reference:
控制時該標記物被放置在GMSMapView中(默認kGMSMarkerAnimationNone,所用的動畫沒有動畫)。
使用Google Maps SDK for iOS標記可以進行這樣的:
GMSMarker *startMarker = [GMSMarker markerWithPosition:@"NYC"];
startMarker.appearAnimation = kGMSMarkerAnimationPop;
startMarker.title = @"Start";
startMarker.snippet = @"My address";
startMarker.map = mapView;
0
爲SWIFT:
locationMarker.appearAnimation = kGMSMarkerAnimationPop
locationMarker.icon = UIImage(named: "testImage") as UIImage?
相關問題
- 1. 如何使用jQuery和JSON添加圖釘到谷歌地圖
- 2. 在地圖視圖中放置圖釘
- 3. 谷歌地圖圖釘錯誤
- 4. 在谷歌地圖中添加標記谷歌地圖反應
- 5. 在用戶位置加載地圖 - iOS中的谷歌地圖
- 6. 谷歌地圖iOS SDK - 添加徽章
- 7. 如何在iOS中的谷歌地圖添加傾斜效果?
- 8. 在Bing地圖中添加圖釘
- 9. 手動在谷歌地圖上拖放圖釘,並在谷歌地圖中獲取Lon&Lat APIV2
- 10. 如何在谷歌地圖iOS中
- 11. 添加谷歌地圖,將顯示在谷歌地圖
- 12. 添加默認位置谷歌地圖
- 13. 谷歌地圖添加位置
- 14. 如何添加谷歌地圖上
- 15. 如何添加svg到谷歌地圖
- 16. 在JSP中添加谷歌地圖
- 17. UITableView在谷歌地圖上添加時不滾動添加google地圖iOS
- 18. 如何在谷歌地圖上添加概覽地圖
- 19. 谷歌地圖在iOS中放置多個引腳
- 20. 如何在標記添加到谷歌地圖後在Android谷歌地圖API中添加標題標題
- 21. 如何在谷歌地圖iOS版SDK
- 22. 谷歌地圖在Windows手機中的自定義圖釘
- 23. 在谷歌地圖上放置文字
- 24. 在谷歌地圖上放置針點
- 25. 在谷歌地圖iOS版
- 26. iOS谷歌地圖動態縮放
- 27. 縮放谷歌地圖api 3 [ios]
- 28. 如何在地圖圖釘內容中添加換行符?
- 29. 如何設置谷歌地圖Angular2 - 谷歌 - 地圖到2d
- 30. 如何在谷歌地圖預定義位置添加標記