Skip to content

Commit

Permalink
add mapkit capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSleepyPegasus committed Feb 26, 2024
1 parent 5f1c3c6 commit 6cb8608
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
8 changes: 8 additions & 0 deletions School Bus Route Software.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
C85291202B57729A00560C6F /* AdminDashboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = C852911F2B57729A00560C6F /* AdminDashboard.swift */; };
C85291222B5772E400560C6F /* PersonnelDashboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = C85291212B5772E400560C6F /* PersonnelDashboard.swift */; };
C85291242B5772F100560C6F /* ParentStudentDashboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = C85291232B5772F100560C6F /* ParentStudentDashboard.swift */; };
C8BF0DD62B8C3576009C2BFF /* routeMgmt.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8BF0DD52B8C3576009C2BFF /* routeMgmt.swift */; };
C8C0E4922B2FF746006C2BC4 /* School_Bus_Route_SoftwareApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8C0E4912B2FF746006C2BC4 /* School_Bus_Route_SoftwareApp.swift */; };
C8C0E4962B2FF747006C2BC4 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C8C0E4952B2FF747006C2BC4 /* Assets.xcassets */; };
C8C0E49A2B2FF747006C2BC4 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C8C0E4992B2FF747006C2BC4 /* Preview Assets.xcassets */; };
Expand Down Expand Up @@ -43,6 +44,7 @@
C85291232B5772F100560C6F /* ParentStudentDashboard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParentStudentDashboard.swift; sourceTree = "<group>"; };
C85291282B57789600560C6F /* testAccounts.geojson */ = {isa = PBXFileReference; lastKnownFileType = text; path = testAccounts.geojson; sourceTree = "<group>"; };
C8BF0DD42B8C3383009C2BFF /* School-Bus-Route-Software-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "School-Bus-Route-Software-Info.plist"; sourceTree = SOURCE_ROOT; };
C8BF0DD52B8C3576009C2BFF /* routeMgmt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = routeMgmt.swift; sourceTree = "<group>"; };
C8C0E48E2B2FF746006C2BC4 /* School Bus Route Software.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "School Bus Route Software.app"; sourceTree = BUILT_PRODUCTS_DIR; };
C8C0E4912B2FF746006C2BC4 /* School_Bus_Route_SoftwareApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = School_Bus_Route_SoftwareApp.swift; sourceTree = "<group>"; };
C8C0E4952B2FF747006C2BC4 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
Expand Down Expand Up @@ -84,6 +86,7 @@
isa = PBXGroup;
children = (
C852911F2B57729A00560C6F /* AdminDashboard.swift */,
C8BF0DD52B8C3576009C2BFF /* routeMgmt.swift */,
);
path = Administrator;
sourceTree = "<group>";
Expand Down Expand Up @@ -300,6 +303,7 @@
C85291242B5772F100560C6F /* ParentStudentDashboard.swift in Sources */,
C85291222B5772E400560C6F /* PersonnelDashboard.swift in Sources */,
C852911B2B576B6100560C6F /* LoginScreen.swift in Sources */,
C8BF0DD62B8C3576009C2BFF /* routeMgmt.swift in Sources */,
C85291202B57729A00560C6F /* AdminDashboard.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -452,9 +456,11 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "School Bus Route Software/School_Bus_Route_Software.entitlements";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"School Bus Route Software/Preview Content\"";
DEVELOPMENT_TEAM = W46XT2XXZV;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "School-Bus-Route-Software-Info.plist";
Expand Down Expand Up @@ -489,9 +495,11 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "School Bus Route Software/School_Bus_Route_Software.entitlements";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "\"School Bus Route Software/Preview Content\"";
DEVELOPMENT_TEAM = W46XT2XXZV;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "School-Bus-Route-Software-Info.plist";
Expand Down
20 changes: 20 additions & 0 deletions School Bus Route Software/Administrator/routeMgmt.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// routeMgmt.swift
// School Bus Route Software
//
// Created by Alvin Wu on 2024-02-25.
//

import SwiftUI

struct routeMgmt: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}

struct routeMgmt_Previews: PreviewProvider {
static var previews: some View {
routeMgmt()
}
}

0 comments on commit 6cb8608

Please sign in to comment.