Questions tagged [nutiteq]

Nutiteq maps SDK is a powerful and easy to use map development tool for smartphones. Enables offline mapping, 3D and GIS data, and flexibility for the most demanding needs.

80 questions
0
votes
1 answer

Identify the event(rotate/zoom/tilt/drag) when onMapMoved() is Called - Nutiteq

I am using the nutiteq SDK for loading the map mbtiles. I got the event which which fires when zoom/ rotate/tilt/drag happens. But all this comes under one listener as per the documentation. Sample code: public class MyMapEventListener extends…
Fahim
  • 12,198
  • 5
  • 39
  • 57
0
votes
1 answer

Nutiteq - ViewLabel not refreshed after returning from another Activity

I have developed a ViewLabel with a custom View for my Polygons and I can show pretty well but when I go to another Activity ( through startActivityForResult() ) and return to my Map Activity with a value to update a TextView of this custom view I…
Gödel77
  • 839
  • 3
  • 15
  • 27
0
votes
1 answer

OpenStreetMap add marker to Nutiteq MapView with custom Xfermode

I need to put some markers on top of a Nutiteq MapView. In order to create these markers I create a bitmap with a semi-transparent circle. int size = (int)(30*mDisplayMetrics.density); Bitmap androidMarkerBitmap = Bitmap.createBitmap(size, size,…
Massimo
  • 3,436
  • 4
  • 40
  • 68
0
votes
1 answer

Support custom / HTTPS tile data source with Nutiteq SDK

I tried Nutiteq SDK with custom tile URL which uses HTTPS, but it did not work. Does Nutiteq Maps SDK support HTTPS?
JaakL
  • 4,107
  • 5
  • 24
  • 37
0
votes
1 answer

How To Convert Nutiteq lib's Coordinates into GPS Coordinates

hello mates hope you having a nice day, its been a long time i am trying to convert back the coordinates that the nutiteq map creates from the location to the lat/long . the coordinates are created using this method : public MapPos fromWgs84(double…
iamreza
  • 57
  • 10
0
votes
1 answer

guide/information on building an offline mapping Android application using nutiteq

Does anyone have or know of any guides/tutorials/information on how to build an offline mapping Android application using nutiteq?
Paul Alexander
  • 2,686
  • 4
  • 33
  • 69
0
votes
1 answer

Android Nutiteq Map geting marker id

I'm developing a map application using nutiteq mapview. I added multiple markers on my map and every marker has a click action. I handle marker click in 'onVectorElementClicked' function but it doesn't give me my clicked marker's id, only gives to…
John Error
  • 2,076
  • 5
  • 18
  • 23
0
votes
1 answer

Nutiteq set layer level or height

i have a map application. In my map, there is two layer which i use. First layer shows traffic lines, second layer shows my route. In this point when i draw route somewhere, my route lines remain below the traffic lines. So i want to set height or…
John Error
  • 2,076
  • 5
  • 18
  • 23
0
votes
1 answer

Nutiteq map freezing after adding a few lines and markers

im developing a traffic application and there is a few traffic lines and warning markers on the road. I draw traffic lines according to zoom level. For example, If zoom level is over 10, im removing all lines and redraw for new zoom level. Because…
John Error
  • 2,076
  • 5
  • 18
  • 23
0
votes
1 answer

How can i clear all mapview items in Nutiteq?

I'm developing a traffic application with using nutiteq map. There is over 500 traffic lines, lot of markers about traffic. I drew traffic lines with this way; public void drawlines(){ ArrayList arr_lat_long1 = new ArrayList(); …
John Error
  • 2,076
  • 5
  • 18
  • 23
0
votes
0 answers

Nutiteq in Android Studio 0.8.14

I was trying to use Nutiteq SDK 3.0 with android studio but I can't get it to work. All libraries are added, but in layout file when using:
H3llT0uCh
  • 5
  • 3
0
votes
1 answer

Why I'm getting InvocationTargetException error when I want to add new polygon on Nutiteq?

I'm computing some area and I want to draw a polygon on the area I have computed. But I'm getting this error I've tracked the error with debug and I've seen that program just cant pass this line in the middle. I've declared everthing as…
Capan
  • 686
  • 1
  • 14
  • 32
0
votes
1 answer

Nutiteq Android- Offline map is not displaying

Here is my code @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mapView = (MapView) findViewById(R.id.mapView); …
Prasanna Aarthi
  • 3,439
  • 4
  • 26
  • 48
0
votes
1 answer

How does Nutiteq EditableLayer adds a polygon automatically?

I'm looking at the codes to find the parameters of this triangle shaped polygons parameters. But I just can't find it. final String[] items = new String[] { "Point", "Line", "Polygon", "Poligon (Koordinat)" }; typeBuilder.setItems(items, new…
Capan
  • 686
  • 1
  • 14
  • 32
0
votes
1 answer

Bitmap size exceeds 32 bits while drawing marker on nutiteq

I'm creating dynamic map marker in my android app, but I sometimes I got OutOfMemoryError and IllegalArgumentExceptionthat have an identical logcat error. Here is my code to draw multiple marker for (int i = 0; i < lats.size(); i++) { //…
Raditya Kurnianto
  • 734
  • 1
  • 16
  • 42