I'm using ar.js/a-farme to put GPS entities My problem is that the position of the entities is not accurate and it is moving with me (not stable). even that the distance between them is 1346m it looks like they are so close. And I make a pipe link between two GPS entities so due to the bad position the pipe looks so small that it should be. how it looks on my mobile browser
this is my code to create the egps entity:
private createEntity(element: any): any {
const gpsEntity: any = document.createElement('a-entity');
gpsEntity.setAttribute('id', element.id);
gpsEntity.setAttribute('gps-entity-place', 'latitude:' + element.Latitude + '; longitude:' + element.Longitude);
return gpsEntity;
}