Skip to content

Commit

Permalink
Merge pull request #7 from heremaps/add_3dvenuemaps
Browse files Browse the repository at this point in the history
Add 3D Venue Maps example
  • Loading branch information
sschuberth authored Jan 11, 2017
2 parents 0b05946 + 17aa76c commit e564723
Show file tree
Hide file tree
Showing 37 changed files with 1,484 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 3d-venues-and-indoor-routing/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.gradle/
build/
app/libs/
.idea/
*.iml
local.properties
33 changes: 33 additions & 0 deletions 3d-venues-and-indoor-routing/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"

defaultConfig {
applicationId "com.here.android.example.venue"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
flatDir {
dirs 'libs'
}
}

dependencies {
compile(name: 'HERE-sdk', ext: 'aar')
compile 'com.android.support:support-v4:23.0.0'
compile 'com.android.support:support-annotations:23.0.0'
compile 'com.google.code.gson:gson:2.2.4'
}
33 changes: 33 additions & 0 deletions 3d-venues-and-indoor-routing/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.here.android.example.venue">

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

<application android:allowBackup="true" android:hardwareAccelerated="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name">

<!--Developers should put application credentials here.To obtain them, please register the application at developer.here.com-->
<meta-data android:name="com.here.android.maps.appid" android:value=""/>
<meta-data android:name="com.here.android.maps.apptoken" android:value=""/>
<meta-data android:name="com.here.android.maps.license.key" android:value=""/>


<activity android:label="@string/app_name" android:name=".Venue3dActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

<service android:label="HereMapService" android:name="com.here.android.mpa.service.MapService" android:process="global.Here.Map.Service.v2">
<intent-filter>
<action android:name="com.here.android.mpa.service.MapService">
</action>
</intent-filter>
</service>
</application>
</manifest>
Loading

0 comments on commit e564723

Please sign in to comment.