Describe the bug
When using geo based and marker based AR in the same scene only either one of them work. Problem seems to be the camera entity or I am missing something.
When <a-entity camera/> is used as advised on arjs docs for multiple marker support, geo based elements are not displayed. <a-entity camera gps-camera rotation-reader/> does not work either.
When <a-camera gps-camera rotation-reader/> is used as advised on geoarjs docs, then barcode or pattern marker is found but the overlaying a-element can't be seen (I was able to see it at some weird lucky angles, maybe the problem is due to camera being moved?). Acts as same when <a-camera camera gps-camera rotation-reader/> is used or when 2 different camera elements used as <a-camera camera gps-camera rotation-reader/><a-entity camera/>
To Reproduce
I have prepared a simple example to reproduce, change the camera elements to see different cases:
````html
<a-marker preset='hiro'>
<a-sphere position='0 0.5 0' material='opacity: 0.5; side: double;color:blue;'>
</a-sphere>
</a-marker>
<!-- Location based elements are displayed, hiro marker is found but element is not displayed -->
<!-- <a-camera gps-camera rotation-reader/> -->
<!-- Location based elements are displayed, hiro marker is found but element is not displayed -->
<!-- <a-camera camera gps-camera rotation-reader/>
<a-entity camera/> -->
<!-- No gps based elements displayed, hiro marker is found and it's element is displayed -->
<a-entity camera gps-camera rotation-reader/>
</a-scene>