-
Notifications
You must be signed in to change notification settings - Fork 75
Free openstreetmap license
Nutiteq edited this page Feb 21, 2014
·
10 revisions
By default SDK is in evaluation mode with Nutiteq logo and evaluation text. But you can also use Nutiteq 3D SDK for free for public OpenStreetMap-powered applications. The terms are:
- You must use OpenStreetMap as your base map. You can use any service, online or offline source for this.
- You cannot cover or obfuscate OpenStreetMap logo on the map
This license is not applicable for Nutiteq SDK Xamarin Component
For replacing the default Nutiteq logo to OSM one you need to:
- Register your app for OSM license and get Nutiteq SDK OSM license SDK key
- Add the following code with your key (key will be sent to your e-mail account after you have filled the online registration form):
// Register license, do it before creating any MapView instances
if(MapView.registerLicense("YOUR_LICENSE_KEY", getApplicationContext())){
Log.info("license ok");
}else{
Log.error("license not accepted");
}