hmm looks interesting but do not have any usage for me, sorry. Interesting is that this render vector maps in flash. really nice ..
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: "AndroidPIT"I feel very sorry to hear about all these problems. I am sure that our licence library works well. I know, however, that it is a pain in the butt to integrate it. So it was us who did a bad job on this. I feel very sorry about it!
We will do our best to improve this a soon as possible. I cannot promise that this will be soon. But in the meantime we will do our best to help all of you the best as we can to resolve the current issue with your licences.
All the best,
Fabien of AndroidPIT
Quote from: "spawny"Hi Menion,
it's great that you continue, after the maps problem! With google ... I wonder about other android programs, who also show GoogleMaps. I was using Maverick a lot before Locus came out and they also offer a lot of maps to choose from. However there's no possibility to download the maps directly from there (it only caches the visited tiles). That's why I like Locus! It still would be great if you could show GoogleMaps (legally), which probably means that you disallow downloading maps from there, but just showing. Maverick is out for quite some time, so if they can then you also might me able, right?
<intent-filter>
<action android:name="menion.android.locus.GET_POINT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
if (getIntent().getAction().equals("menion.android.locus.GET_POINT")) {
// get some data here and finally return value back
Intent intent = new Intent();
// string value name
intent.putExtra("name", "Point name"); // optional
// rest are all DOUBLE values (to avoid problems even when for acc and alt isn't double needed)
intent.putExtra("latitude", 50.0); // required, not 0.0
intent.putExtra("longitude", 14.0); // required, not 0.0
intent.putExtra("altitude", 0.0); // optional
intent.putExtra("accuracy", 0.0); // optional
setResult(RESULT_OK, intent);
finish();
}