Skip to content

Commit

Permalink
[Add, Feat] #4 - 기본 Maps 포함하는 ViewController 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
yurim830 committed Jan 8, 2025
1 parent 0e576c5 commit 0f1f4ad
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
//
// MapViewController.swift
// Staccato-iOS
//
// Created by 김유림 on 1/9/25.
//

import GoogleMaps

import UIKit

class MapViewController: UIViewController {

let map = GMSMapView(frame: .zero)
var isAnimating: Bool = false

override func loadView() {
super.loadView()
self.view = map
}
}

0 comments on commit 0f1f4ad

Please sign in to comment.