I am using ARToolkit
sdk for location based AR for displaying geolocation
point on the
camera. I have implemented this sdk for ios and I have one problem that is two gps
points which are in same direction is overlapping on each other. How to resolve this problem please help me.
I have some little changes in AugmentedRealityController.m
class in updateLocations
method. According to distance i am adjusting label height on the on the screen, but problem is not resolved, how to make a gap between two overlapped marker.
if ([item distanceFromOrigin]>= 50 && [item distanceFromOrigin]<= 100) {
scaleFactor = 1.2;
loc.y = loc.y - 20;
}
else if ([item distanceFromOrigin]>= 100 && [item distanceFromOrigin]<= 150) {
scaleFactor = 0.8;
loc.y = loc.y - 50;
}
else if ([item distanceFromOrigin]>= 150 && [item distanceFromOrigin]<= 200) {
scaleFactor = 0.6;
loc.y = loc.y - 80;
}
else if ([item distanceFromOrigin]>= 200 && [item distanceFromOrigin]<= 300) {
scaleFactor = 0.6;
loc.y = loc.y - 100;
}
else if ([item distanceFromOrigin]>= 300 && [item distanceFromOrigin]<= 400) {
scaleFactor = 0.6;
loc.y = loc.y - 120;
}
else if ([item distanceFromOrigin]>= 400 && [item distanceFromOrigin]<= 500) {
scaleFactor = 0.5;
}
else if ([item distanceFromOrigin]>= 500 && [item distanceFromOrigin]<= 600) {
scaleFactor = 0.5;
}
else if ([item distanceFromOrigin]> 500)
{
scaleFactor = 0.5;
}
[markerView setFrame:CGRectMake(loc.x - width / 2.0, loc.y -[item radialDistance]/100, width, height)];
// [markerView setFrame:CGRectMake(loc.x - width / 2.0, loc.y, width, height)];
[markerView setNeedsDisplay];
}
Please help me if anybody have an idea about how to resolve this problem.
I solved the problem of the callout collision by making some changes in your code.
1) In
AugmentedRealityViewController
there isupdateLocations
method, go intoif
condition andthis condition is
updatelocation
method and i call thelistSubviewsOfView
method, that is used for retrivingsubview
fromsuperView
.then compile and run