Skip to content

Commit c990ce9

Browse files
committed
feat: 更新PLIST配置以全面支持各类功能
Update response.dev.js
1 parent 7dd9807 commit c990ce9

File tree

1 file changed

+20
-11
lines changed

1 file changed

+20
-11
lines changed

src/response.dev.js

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -75,34 +75,43 @@ Console.info(`PLATFORM: ${PLATFORM}`);
7575
if (PLIST) {
7676
// CN
7777
PLIST["com.apple.GEO"].CountryProviders.CN.ShouldEnableLagunaBeach = true; // XX
78-
PLIST["com.apple.GEO"].CountryProviders.CN.DrivingMultiWaypointRoutesEnabled = true; // 驾驶导航途径点
78+
//PLIST["com.apple.GEO"].CountryProviders.CN.DrivingMultiWaypointRoutesEnabled = true; // 驾驶导航途径点
7979
//PLIST["com.apple.GEO"].CountryProviders.CN.EnableAlberta = false; // CN
8080
PLIST["com.apple.GEO"].CountryProviders.CN.EnableClientDrapedVectorPolygons = true; // CN
8181
PLIST["com.apple.GEO"].CountryProviders.CN.GEOAddressCorrectionEnabled = true; // CN
8282
//delete PLIST["com.apple.GEO"].CountryProviders.CN.GEOBatchSpatialEventLookupMaxParametersCount; // CN
8383
//delete PLIST["com.apple.GEO"].CountryProviders.CN.GEOBatchSpatialPlaceLookupMaxParametersCount; // CN
84-
PLIST["com.apple.GEO"].CountryProviders.CN.LocalitiesAndLandmarksSupported = true; // CN
85-
PLIST["com.apple.GEO"].CountryProviders.CN.NavigationShowHeadingKey = true;
84+
//PLIST["com.apple.GEO"].CountryProviders.CN.LocalitiesAndLandmarksSupported = true; // CN
85+
//PLIST["com.apple.GEO"].CountryProviders.CN.NavigationShowHeadingKey = true;
8686
PLIST["com.apple.GEO"].CountryProviders.CN.ODcwM0Y2NTgtOTY2M = false; // CN new
8787
PLIST["com.apple.GEO"].CountryProviders.CN.POIBusynessDifferentialPrivacy = true; // CN
8888
PLIST["com.apple.GEO"].CountryProviders.CN.POIBusynessRealTime = true; // CN
89-
PLIST["com.apple.GEO"].CountryProviders.CN.TransitPayEnabled = true; // CN
89+
PLIST["com.apple.GEO"].CountryProviders.CN.TransitPayEnabled = true; // 公交支付
9090
//PLIST["com.apple.GEO"].CountryProviders.CN.WiFiQualityNetworkDisabled = Settings?.Config?.Defaults?.WiFiQualityNetworkDisabled ?? true; // CN
9191
//PLIST["com.apple.GEO"].CountryProviders.CN.WiFiQualityTileDisabled = Settings?.Config?.Defaults?.WiFiQualityTileDisabled ?? true; // CN
92-
PLIST["com.apple.GEO"].CountryProviders.CN.SupportsOffline = true; // CN
93-
PLIST["com.apple.GEO"].CountryProviders.CN.SupportsCarIntegration = true; // CN
92+
PLIST["com.apple.GEO"].CountryProviders.CN.SupportsOffline = true; // 支持离线地图
93+
//PLIST["com.apple.GEO"].CountryProviders.CN.SupportsCarIntegration = true; // 支持 CarPlay 集成
9494
// TW
9595
PLIST["com.apple.GEO"].CountryProviders.CN.GEOShouldSpeakWrittenAddresses = true; // TW
9696
PLIST["com.apple.GEO"].CountryProviders.CN.GEOShouldSpeakWrittenPlaceNames = true; // TW
9797
// US
98-
PLIST["com.apple.GEO"].CountryProviders.CN["6694982d2b14e95815e44e970235e230"] = true; // US
99-
PLIST["com.apple.GEO"].CountryProviders.CN.PedestrianAREnabled = true; // 现实世界中的线路
100-
PLIST["com.apple.GEO"].CountryProviders.CN.OpticalHeadingEnabled = true; // 举起以查看
101-
PLIST["com.apple.GEO"].CountryProviders.CN.UseCLPedestrianMapMatchedLocations = true; // 导航准确性-增强
98+
//PLIST["com.apple.GEO"].CountryProviders.CN["6694982d2b14e95815e44e970235e230"] = true; // US
99+
//PLIST["com.apple.GEO"].CountryProviders.CN.PedestrianAREnabled = true; // 现实世界中的线路
100+
//PLIST["com.apple.GEO"].CountryProviders.CN.OpticalHeadingEnabled = true; // 举起以查看
101+
//PLIST["com.apple.GEO"].CountryProviders.CN.UseCLPedestrianMapMatchedLocations = true; // 导航准确性-增强
102102
// Public
103103
PLIST["com.apple.GEO"].Q0FFNUI2QUEtRUU2.push("CN");
104-
PLIST["com.apple.GEO"].SupportedCountriesCustomRouteCreation.push("CN");
104+
PLIST["com.apple.GEO"].SupportedCountriesCustomRouteCreation.push("CN"); // 支持创建自定义步行或徒步线路
105105
PLIST["com.apple.GEO"].VisitedPlacesWarmingSheetCountryEnabled.push("CN");
106+
// mod
107+
PLIST["com.apple.GEO"].DrivingMultiWaypointRoutesEnabled = true; // 驾驶导航途径点
108+
PLIST["com.apple.GEO"].LocalitiesAndLandmarksSupported = true; // 支持地名和地标
109+
PLIST["com.apple.GEO"].NavigationShowHeadingKey = true; // 导航显示方向键?
110+
PLIST["com.apple.GEO"].SupportsCarIntegration = true; // 支持 CarPlay 集成
111+
PLIST["com.apple.GEO"]["6694982d2b14e95815e44e970235e230"] = true; // US
112+
PLIST["com.apple.GEO"].PedestrianAREnabled = true; // 现实世界中的线路
113+
PLIST["com.apple.GEO"].OpticalHeadingEnabled = true; // 举起以查看
114+
PLIST["com.apple.GEO"].UseCLPedestrianMapMatchedLocations = true; // 导航准确性-增强
106115
}
107116
break;
108117
}

0 commit comments

Comments
 (0)