/ios_api

DabeeoMaps iOS SDK

Primary LanguageSwift

Tutorial for iOS

본 저장소는 다비오맵스 SDK를 보다 쉽게 적용하기 위한 튜토리얼 프로젝트를 제공합니다.

Index

  1. Init MapView
  2. Add DrawObjects
  3. Add UIComponent
  4. Add Event (Map Poi)
  5. Add Event (Custom DrawObjects)
  6. Map Animation
  7. Preview
  8. Init VPSView
  9. Add 2DContents
  10. Add 3DContents

API Document

Download

Project Setting

  • General

    • DabeeoMaps Framework 파일을 추가합니다.

    • Deployment Target을 11.0 이상으로 설정합니다.

  • Build Setting

    • Enable Bitcode를 No 로 설정합니다.

  • Run > Options Setting

    • Metal API Validation을 Disabled 로 설정합니다.

Info.plist Setting

  • Http 통신을 허용합니다.

    <key>NSAppTransportSecurity</key>
     <dict> 
       <key>NSAllowsArbitraryLoads</key>
       <true/>
     </dict>

시작하기

  • Import SDK

     import DabeeoMaps_SDK
  • 개발 로그 확인

    • SDK 내 프로세스에 대한 개발용 및 에러 로그 확인을 위하여, DMLogManager를 활성화 합니다.
          DMLogManager.sharedInstance().showLog(true)
          DMLogManager.sharedInstance().logLevel = .level_Error