https://github.com/dbabbs/here-snapkit
HERE + Snap Kit integration
https://github.com/dbabbs/here-snapkit
heremaps location maps snapchat snapkit
Last synced: 7 months ago
JSON representation
HERE + Snap Kit integration
- Host: GitHub
- URL: https://github.com/dbabbs/here-snapkit
- Owner: dbabbs
- Created: 2018-06-27T18:32:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-27T18:32:47.000Z (over 7 years ago)
- Last Synced: 2025-01-26T03:45:14.917Z (8 months ago)
- Topics: heremaps, location, maps, snapchat, snapkit
- Language: Objective-C
- Homepage: https://developer.here.com/blog/here-maps-snap-kit
- Size: 4.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HERE + Snap Kit

[HERE Developer](http://developer.here.com/) integration with [Snap Kit](https://kit.snapchat.com/portal/). Learn how to send location-aware stickers to the Snapchat camera.
Created by [Dylan Babbs](http://dylanbabbs.com).
### Adding HERE and Snap Kit keys
In order to successfully build this project, you need to register for HERE Developer and Snap Kit credentials.In `Info.plist`, replace `YOUR-SNAPKIT-KEY` with your Snap Kit development key, found in the Snap Kit portal.
```
SCSDKClientId
YOUR-SNAPKIT-KEY
```In `ViewController.swift`, replace `YOUR-HERE-ID` and `YOUR-HERE-CODE` with your app id and app code, found in the HERE Developer Portal.
```
struct here {
static var id = "YOUR-HERE-ID"
static var code = "YOUR-HERE-CODE"
}
```