-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,33 @@ | ||
# MapsIndoorsSDK-iOS-Examples | ||
MpapsIndoors iOS SDK examples | ||
# Demo App for MapsIndoors SDK | ||
|
||
This is a demo application for MapsIndoors SDK. It demonstrates how to integrate and use MapsIndoors SDK in an iOS application. | ||
|
||
## Getting Started | ||
|
||
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. | ||
|
||
### Prerequisites | ||
|
||
- Xcode version 13 | ||
- iOS version 13 | ||
|
||
### Installing | ||
|
||
1. Clone the repository to your local machine. | ||
2. Navigate to the demo app directory. | ||
3. Open the `.xcworkspace` file in Xcode. | ||
|
||
### Configuration | ||
|
||
This demo app uses Google Maps and Mapbox. To run the app, you need to provide your own API keys for these services. | ||
|
||
1. Create a new plist file in the demo app directory named `APIKeys.plist`. | ||
2. In this plist, add your API keys. The plist should have the following structure: | ||
|
||
<dict> | ||
<key>GoogleMapsAPIKey</key> | ||
<string>your_google_maps_api_key_here</string> | ||
<key>MapboxAPIKey</key> | ||
<string>your_mapbox_api_key_here</string> | ||
</dict> | ||
|