Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 441 Bytes

FormsMapKit.md

File metadata and controls

29 lines (21 loc) · 441 Bytes

FormsMapKit

FormsMapKit is map library.

Import

import FormsMapKit

Dependencies

Forms.framework

Usage

let mapView = Components.map.apple()
    .with(height: 350)
    .with(delegate: self)
    .with(isClusterEnabled: true)
    .with(showsUserLocation: true)
    .register([SomeAnnotationView.self])

self.mapView.dequeue(SomeAnnotationView.self)
self.mapView.setRegion(center: some_location)