MSFlightMapView alternatives and similar libraries
Based on the "Maps" category.
Alternatively, view MSFlightMapView alternatives based on common mentions on social networks and blogs.
-
Mapbox GL
DISCONTINUED. Interactive, thoroughly customizable maps in native Android, iOS, macOS, Node.js, and Qt applications, powered by vector tiles and OpenGL -
NAMapKit
Allows you to use custom maps in iphone applications and attempts to mimics some of the behaviour of the MapKit framework -
CMMapLauncher
CMMapLauncher is a mini-library for iOS that makes it quick and easy to show directions in various mapping applications. -
JDSwiftHeatMap
JDSwiftMap is an IOS Native MapKit Library. You can easily make a highly customized HeatMap. -
MapViewPlus
DISCONTINUED. Use any custom view as custom callout view of your MKMapView with cool animations. Also, easily use any image as annotation view. -
GoogleMapsHelper
An easy to integrate Model Based Google Maps Helper (SVHTTPClient, AFNetworking) That lets you Geo Code , Reverse Geocode, Get Directions , Places Autocomplete. -
GLMap
Crossplatform offline vector map with MapCSS styling. Offline search and offline navigation are included.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of MSFlightMapView or a related project?
README
MSFlightMapView
Demo
Requirements
- iOS 10.0+
- Xcode 9.0+
Installation
Just add the MSFlightMapView folder to your project.
or use CocoaPods:
pod 'MSFlightMapView'
Usage
Flights Creation
To use MSFlightMapView, we would be needing to create MSFlight objects. It can be created in the following ways:
1. MSFlight
MSFlight(withFirstLocation: London, withSecondLocation: Paris)
MSFlight are single leg flights having a destination and an arrival. We can set the following attributes of a flight :
firstLocation
- The Departure of the flight
secondLocation
- The Arrival of the flight
iconImage
- The marker image
iconColor
- The color of the marker
pathColor
- The path color between departure and arrival
markerColor
- The color of markers of departure and arrival
MSFlight
can be further extended to connecting flights by using.connecting(toLocation: CLLocationCoordinate2D)
to either aMSFlight
object or an array ofMSFlight
2. MSMultiLegFlight
MSMultiLegFlight(withLocations: [London, Berlin, Ankara, Moscow])
MSMultiLegFlight
are connecting flights between a number of locations. It generates MSFlight
objects so it can be further customised as mentioned above.
Map Creation
MSFlightMapView
is a subclass of GMSMapView
. We can set and animate flights on the map just by using :
For MSFlight
let flight = MSFlight(withFirstLocation: London, withSecondLocation: Berlin).connecting(toLocation: Moscow)
mapView.flights = [flight]
For MSMultiLegFlight
let flightPlan = MSMultiLegFlight(withLocations: [London, Berlin, Ankara, Moscow])
mapView.flights = flightPlan.flights
Licence
MSFlightMapView is released under the MIT license. See [LICENSE](./LICENSE) for details.
*Note that all licence references and agreements mentioned in the MSFlightMapView README section above
are relevant to that project's source code only.