Update: 2026-07-10 19:42:49
This commit is contained in:
+1
-1
@@ -71,7 +71,7 @@ class MapPresentation(outerContext: Context, display: Display) : Presentation(ou
|
||||
"asset://packages/intaleq_maps/assets/style_dark.json"
|
||||
else
|
||||
"asset://packages/intaleq_maps/assets/style.json"
|
||||
map.setStyle(Style.Builder().fromUri(currentStyleLoaded)) {
|
||||
map.setStyle(Style.Builder().fromUri(currentStyleLoaded!!)) {
|
||||
isMapReady = true
|
||||
updateCameraPosition()
|
||||
}
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 7.0 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 8.1 KiB |
@@ -1,7 +1,6 @@
|
||||
import UIKit
|
||||
import Flutter
|
||||
import FirebaseCore
|
||||
import CarPlay
|
||||
|
||||
import CoreLocation
|
||||
|
||||
@@ -29,7 +28,6 @@ import CoreLocation
|
||||
|
||||
// تهيئة قنوات الاتصال مع Flutter
|
||||
setupMethodChannel()
|
||||
setupCarNavigationChannel()
|
||||
|
||||
// ضبط مدير الموقع لمتابعة تغييرات الأذونات
|
||||
locationManager.delegate = self
|
||||
@@ -38,33 +36,7 @@ import CoreLocation
|
||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||
}
|
||||
|
||||
// MARK: - CarPlay Connection (Non-Scene API)
|
||||
|
||||
override func application(
|
||||
_ application: UIApplication,
|
||||
didConnectCarInterfaceController interfaceController: CPInterfaceController,
|
||||
to window: CPWindow
|
||||
) {
|
||||
let sceneDelegate = CarPlaySceneDelegate()
|
||||
sceneDelegate.interfaceController = interfaceController
|
||||
|
||||
let mapTemplate = CPMapTemplate()
|
||||
sceneDelegate.mapTemplate = mapTemplate
|
||||
mapTemplate.guidanceBackgroundStyle = .light
|
||||
|
||||
interfaceController.setRootTemplate(mapTemplate, animated: true)
|
||||
|
||||
CarPlayState.shared.sceneDelegate = sceneDelegate
|
||||
}
|
||||
|
||||
override func application(
|
||||
_ application: UIApplication,
|
||||
didDisconnectCarInterfaceController interfaceController: CPInterfaceController,
|
||||
from window: CPWindow
|
||||
) {
|
||||
CarPlayState.shared.sceneDelegate?.stopNavigation()
|
||||
CarPlayState.shared.sceneDelegate = nil
|
||||
}
|
||||
|
||||
// MARK: - تهيئة القناة بين Swift و Flutter
|
||||
func setupMethodChannel() {
|
||||
@@ -84,95 +56,6 @@ import CoreLocation
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Car Navigation Method Channel
|
||||
|
||||
func setupCarNavigationChannel() {
|
||||
guard let controller = window?.rootViewController as? FlutterViewController else {
|
||||
return
|
||||
}
|
||||
|
||||
let channel = FlutterMethodChannel(
|
||||
name: "com.siro.siro_driver/car_navigation",
|
||||
binaryMessenger: controller.binaryMessenger
|
||||
)
|
||||
channel.setMethodCallHandler { [weak self] call, result in
|
||||
guard let self = self else { return }
|
||||
switch call.method {
|
||||
case "updateNavState":
|
||||
let lat = (call.arguments as? [String: Any])?["lat"] as? Double ?? 0
|
||||
let lng = (call.arguments as? [String: Any])?["lng"] as? Double ?? 0
|
||||
let bearing = (call.arguments as? [String: Any])?["bearing"] as? Double ?? 0
|
||||
let speed = (call.arguments as? [String: Any])?["speed"] as? Double ?? 0
|
||||
let instruction = (call.arguments as? [String: Any])?["instruction"] as? String ?? ""
|
||||
let distanceToStep = (call.arguments as? [String: Any])?["distanceToStep"] as? Double ?? 0
|
||||
let eta = (call.arguments as? [String: Any])?["eta"] as? Double ?? 0
|
||||
let maneuver = (call.arguments as? [String: Any])?["maneuver"] as? Int ?? 0
|
||||
let isNavigating = (call.arguments as? [String: Any])?["isNavigating"] as? Bool ?? false
|
||||
|
||||
DispatchQueue.main.async {
|
||||
guard let delegate = CarPlayState.shared.sceneDelegate else { return }
|
||||
if isNavigating {
|
||||
if delegate.navigationSession == nil {
|
||||
delegate.startNavigation(
|
||||
instruction: instruction,
|
||||
distance: distanceToStep,
|
||||
eta: eta,
|
||||
maneuverType: maneuver
|
||||
)
|
||||
} else {
|
||||
delegate.updateManeuver(
|
||||
instruction: instruction,
|
||||
distance: distanceToStep,
|
||||
maneuverType: maneuver
|
||||
)
|
||||
delegate.updateArrivalEstimates(eta: eta)
|
||||
}
|
||||
delegate.updateLocation(lat: lat, lng: lng, bearing: bearing)
|
||||
} else {
|
||||
delegate.stopNavigation()
|
||||
}
|
||||
}
|
||||
result(true)
|
||||
|
||||
case "updateLocation":
|
||||
let lat = (call.arguments as? [String: Any])?["lat"] as? Double ?? 0
|
||||
let lng = (call.arguments as? [String: Any])?["lng"] as? Double ?? 0
|
||||
let bearing = (call.arguments as? [String: Any])?["bearing"] as? Double ?? 0
|
||||
|
||||
DispatchQueue.main.async {
|
||||
CarPlayState.shared.sceneDelegate?.updateLocation(
|
||||
lat: lat,
|
||||
lng: lng,
|
||||
bearing: bearing
|
||||
)
|
||||
}
|
||||
result(true)
|
||||
|
||||
case "updateInstruction":
|
||||
let instruction = (call.arguments as? [String: Any])?["instruction"] as? String ?? ""
|
||||
let maneuver = (call.arguments as? [String: Any])?["maneuver"] as? Int ?? 0
|
||||
let distanceToStep = (call.arguments as? [String: Any])?["distanceToStep"] as? Double ?? 0
|
||||
|
||||
DispatchQueue.main.async {
|
||||
CarPlayState.shared.sceneDelegate?.updateManeuver(
|
||||
instruction: instruction,
|
||||
distance: distanceToStep,
|
||||
maneuverType: maneuver
|
||||
)
|
||||
}
|
||||
result(true)
|
||||
|
||||
case "stopNavigation":
|
||||
DispatchQueue.main.async {
|
||||
CarPlayState.shared.sceneDelegate?.stopNavigation()
|
||||
}
|
||||
result(true)
|
||||
|
||||
default:
|
||||
result(FlutterMethodNotImplemented)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - عرض تنبيه عند اكتشاف جهاز مخترق
|
||||
func showSecurityAlert() {
|
||||
|
||||
@@ -4,7 +4,5 @@
|
||||
<dict>
|
||||
<key>aps-environment</key>
|
||||
<string>development</string>
|
||||
<key>com.apple.developer.carplay-driving-task</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
@@ -352,7 +352,8 @@ class AppLink {
|
||||
"$paymentServer/ride/driverWallet/get.php";
|
||||
static String get getDriverPaymentToday =>
|
||||
"$paymentServer/ride/payment/get.php";
|
||||
static String get getCountRide => "$rideServer/payment/getCountRide.php";
|
||||
static String get getCountRide =>
|
||||
"$paymentServer/ride/payment/getCountRide.php";
|
||||
static String get getAllPaymentFromRide =>
|
||||
"$paymentServer/ride/payment/getAllPayment.php";
|
||||
static String get getAllPaymentVisa =>
|
||||
|
||||
@@ -31,7 +31,7 @@ class HomeCaptainController extends GetxController {
|
||||
Timer? activeTimer;
|
||||
Map data = {};
|
||||
bool isHomeMapActive = true;
|
||||
InlqBitmap carIcon = InlqBitmap.fromAsset('assets/images/car.png');
|
||||
InlqBitmap carIcon = InlqBitmap.fromAsset('assets/images/car.png', size: 2.3);
|
||||
bool isMapReadyForCommands = false;
|
||||
bool isLoading = true;
|
||||
late double kazan = 0;
|
||||
@@ -306,7 +306,7 @@ class HomeCaptainController extends GetxController {
|
||||
}
|
||||
|
||||
void addCustomCarIcon() {
|
||||
carIcon = InlqBitmap.fromAsset('assets/images/car.png');
|
||||
carIcon = InlqBitmap.fromAsset('assets/images/car.png', size: 2.3);
|
||||
update();
|
||||
}
|
||||
|
||||
|
||||
@@ -1791,7 +1791,7 @@ class MapDriverController extends GetxController
|
||||
}
|
||||
|
||||
void addCustomCarIcon() {
|
||||
carIcon = InlqBitmap.fromAsset('assets/images/car.png');
|
||||
carIcon = InlqBitmap.fromAsset('assets/images/car.png', size: 2.3);
|
||||
update();
|
||||
}
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ class NavigationService extends GetxService {
|
||||
}
|
||||
|
||||
void _loadCustomIcons() {
|
||||
carIcon = InlqBitmap.fromAsset('assets/images/car.png');
|
||||
carIcon = InlqBitmap.fromAsset('assets/images/car.png', size: 2.3);
|
||||
passengerIcon = InlqBitmap.fromAsset('assets/images/picker.png');
|
||||
startIcon = InlqBitmap.fromAsset('assets/images/A.png');
|
||||
endIcon = InlqBitmap.fromAsset('assets/images/b.png');
|
||||
|
||||
@@ -685,7 +685,7 @@ class NavigationController extends GetxController
|
||||
await mapController!.setUserMarker(Marker(
|
||||
markerId: const MarkerId('car'),
|
||||
position: myLocation!,
|
||||
icon: InlqBitmap.fromStyleImage('car_icon'),
|
||||
icon: InlqBitmap.fromStyleImage('car_icon', size: 2.3),
|
||||
anchor: const Offset(0.5, 0.5),
|
||||
flat: true,
|
||||
rotation: _smoothedHeading,
|
||||
|
||||
@@ -2,7 +2,7 @@ name: siro_driver
|
||||
description: "A new Flutter project."
|
||||
publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
||||
|
||||
version: 1.0.0+3
|
||||
version: 1.0.0+4
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.5 <4.0.0"
|
||||
|
||||
Reference in New Issue
Block a user