Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 지보싶 신촌점
- 비동기배열
- 비동기배열처리방법
- apollo react native
- graphql with reactnative
- 도그존
- promise메서드
- 고르드
- graphql with RN
- 잠실새내
- 화이트해커를 위한 웹 해킹의 기술
- graphql react native
- 홍대 예술
- promise처리
- 화이트 해커를 위한 웹 해킹의 기술
- 홍대 토라비
- graphql mutation error
- graphql
- useMutation error
- 홍대 카페 장쌤
- 금별맥주
- typescript
- 잠실새내 도그존
- 앙버터마카롱
- 신촌 소문난집
- 예쁜술집 예술
- 토라비
- graphql 400
- apolloclient
- 운정 소바동
Archives
- Today
- Total
yehey's 공부 노트 \n ο(=•ω<=)ρ⌒☆
[ios] Locord 개발일지 - naver 지도 불러오기 및 수정 본문
참고 자료
https://docs.ncloud.com/ko/naveropenapi_v3/maps/ios-sdk/v3/start.html
Locord 에 사용한 코드
import UIKit
import NMapsMap
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
let frame = CGRect(x:7, y:218, width:400, height:400)
let mapNaverView = NMFNaverMapView(frame: frame)
mapNaverView.showZoomControls = false
mapNaverView.showLocationButton = true
mapNaverView.mapView.isScrollGestureEnabled = true
mapNaverView.mapView.isTiltGestureEnabled = true
mapNaverView.mapView.isRotateGestureEnabled = true
mapNaverView.mapView.isStopGestureEnabled = true
view.addSubview(mapNaverView)
}
}
기능이 더 다양한 NMFNaverMapView 객체를 이용했다.
프로젝트에서는 지도가 정사각형 모양으로 출력되어야 하기 때문에 프레임 크기도 조절하고 요소 이것저것 참으로 만들어주었다.
이제 지도 사용....해야지...ㅠ
'개발 > 프로젝트' 카테고리의 다른 글
[CEOS - 1주차 미션] vanilla-todo 구현하기 (1) | 2021.03.21 |
---|---|
[ios] Locord 개발일지 - 서버에 이미지, 데이터 POST (0) | 2021.03.03 |
[ios] Locord 개발일지 - emojiPicker 팝업 (0) | 2021.02.13 |
[ios] Locord 개발일지 - datepicker 팝업 (0) | 2021.02.07 |
2020-1 사이버보안 기초 프로젝트 (0) | 2020.09.02 |
Comments