mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
Refactored xcode project into a framework. * This framework can be bundled into an xcframework * The xcframework can be added to a swift package Deployment happens through #21
10 lines
124 B
Swift
10 lines
124 B
Swift
import SwiftUI
|
|
import maplibre_rs
|
|
|
|
@main
|
|
struct App {
|
|
static func main() {
|
|
maplibre_rs.MapLibre.start();
|
|
}
|
|
}
|