Hi!
I was trying to manage a bit the points of interest, I remove almost all points, introducing just one, and allocating instead of the poi of Barcelona another from UK. But, if I do that, the compass is going crazy with AR mechanism (the one I want to change for my proposal in the AR engine of Appunta). Can I use the mobile device as the main point instead of Barcelona? of for the architecture of the engine isn´t possible?
Let´s see my changes:
points.add(new SimplePoint(1, LocationFactory.createLocation(52.072605,-0.627460,100), renderer, "Kings Norton Library"));
in PointsModel.java
and
ar.setPoints(points);
ar.setPosition(LocationFactory.createLocation(52.075995,-0.623184,1));// BCN
ar.setOnPointPressedListener(this);
cv.setPoints(cpoints);
cv.setPosition(LocationFactory.createLocation(52.0759958,-0.623184,1));// BCN
cv.setRotableBackground(R.drawable.arrow);
in EyeViewActivity.java
the first point added is a library on the campus where I study. and the second is a relative point really close to the other.
but trying to remove the new setposition on ar it doesn´t work and makes an error.
Thanks for the support!