-
Notifications
You must be signed in to change notification settings - Fork 75
Downloads
Jaak Laineste edited this page Nov 14, 2017
·
40 revisions
-
File downloads:
nutiteq-3d-sdk-2.4.2.jar - SDKnutiteq-3d-sdk-2.4.2-javadoc.jar - API Javadoc- SDK Source - please build the SDK yourself
- Browse javadoc
- Changelog
-
Nutiteq SDK 3.0 - next version
- New Developer portal with vector map service (online and offline): https://developer.nutiteq.com
- Suggested for new projects. We do not add new features to 2.x SDK anymore
- Major advantages: iOs support in addition to Android, fast and compact vector base map
-
Xamarin component
- Download Nutiteq Maps SDK for Xamarin directly to your Xamarin IDE (Includes Nutiteq SDK 2.3.1)
-
Maven pom.xml:
<repositories>
<repository>
<id>cloudbees-nutiteq-release</id>
<name>Nutiteq SDK release repository</name>
<url>http://repository-nutiteq.forge.cloudbees.com/release/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.nutiteq</groupId>
<artifactId>nutiteq-3d-sdk</artifactId>
<version>2.4.2</version>
</dependency>
...
</dependencies>
- build.gradle (Android Studio):
repositories {
mavenCentral()
// Nutiteq open access repository
maven {
url "http://repository-nutiteq.forge.cloudbees.com/release/"
}
}
}
dependencies {
// Nutiteq SDK itself, mandatory
compile "com.nutiteq:nutiteq-3d-sdk:2.4.2"
// additional dependencies for advanced layers
compile "com.google.code.gson:gson:2.2.3"
compile "com.jhlabs:javaproj-noawt:1.0.7"
compile "com.google.protobuf:protobuf-java:2.4.1"
compile "org.mapsforge.android:mapsforge-map:0.3.0"
compile "com.samskivert:jmustache:1.5"
compile "com.graphhopper:graphhopper:0.1.1"
compile "com.vividsolutions:jts:1.13"
compile "com.android.support:support-v4:18.0.+"
}
- For basic usage nutiteq-3d-sdk-VER.jar is enough, no additional dependencies are needed
- Specific Layers may require additional dependencies. You can get ones from AdvancedMap3D extlibs (Java) and libs (NDK) folders, or just use Maven Eclipse plug-in to manage the dependencies automatically.
- nutiteq-3d-sdk-snapshot.jar - latest development snapshot. javadoc
- Maven repo URL: http://repository-nutiteq.forge.cloudbees.com/snapshot/ , version snapshot
- AdvancedMap3D sample app, pre-built - AdvancedMap3D-SNAPSHOT.apk