MapKit 还是 Google Maps SDK? (iOS)
MapKit or Google Maps SDK? (iOS)
我正在开发一个应用程序,它需要带有标记的地图(包括地址和图片),可能还需要 GPS。我正在从 Parse 数据库中提供数据(地址和图片),我正在为 iOS 开发...我听说 native 更好,但我是 google 和 [= 的忠实粉丝17=] 地图。你会推荐哪一个? Mapkit 还是 GoogleMaps?一个比另一个有什么好处?
谢谢。
乔什
MapKit
has a much better integration with CoreLocation
and
CoreAnimation
. The “Follow user location” mode is missing in Google
Maps; as well, the ability to add advanced animations to annotations
(MKAnnotation
is represented by a UIView
, while a GMSMarker
is
represented by a UIImage
) can give your app an appealing touch that
the Google Maps SDK just can’t.
来自 http://www.raywenderlich.com/81103/introduction-google-maps-ios-sdk-swift.
由于您要在标记上显示地址和图片,因此 Apple's Map Kit 将是更好的选择。
我正在开发一个应用程序,它需要带有标记的地图(包括地址和图片),可能还需要 GPS。我正在从 Parse 数据库中提供数据(地址和图片),我正在为 iOS 开发...我听说 native 更好,但我是 google 和 [= 的忠实粉丝17=] 地图。你会推荐哪一个? Mapkit 还是 GoogleMaps?一个比另一个有什么好处?
谢谢。 乔什
MapKit
has a much better integration withCoreLocation
andCoreAnimation
. The “Follow user location” mode is missing in Google Maps; as well, the ability to add advanced animations to annotations (MKAnnotation
is represented by aUIView
, while aGMSMarker
is represented by aUIImage
) can give your app an appealing touch that the Google Maps SDK just can’t.
来自 http://www.raywenderlich.com/81103/introduction-google-maps-ios-sdk-swift.
由于您要在标记上显示地址和图片,因此 Apple's Map Kit 将是更好的选择。