README.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. Usage
  2. =====
  3. To test the "GO Map Integration" sample, that provides basic integration of the "AR+GPS Location" plugin
  4. with the "GO Map" asset (https://assetstore.unity.com/packages/tools/integration/go-map-3d-map-for-ar-gaming-68889) to
  5. the following:
  6. - Make sure you are using Unity 2019.2 or newer.
  7. - Import the "GO Map" asset from the Asset Store.
  8. - Next, extract the contents of the "GO Map Integration.zip" archive into this folder.
  9. - Add both scenes in "GO Map Integration/Scenes" to the build, with either being the first scene.
  10. - Build the project an try it on your device!
  11. You can use the script "GO Map Integration/Scripts/GoMapPlaceAtLocations.cs" as a reference to implement
  12. your own custom scripts.
  13. Components
  14. ==========
  15. - ARLocationGoMapIntegration: Manages bridging between the ARLocation plugin and the GO Map asset, piping the
  16. location provider and handling scene loading. You must insert the names of the
  17. AR scene and of the GO Map scene is this component. It is a singleton which
  18. will remain active during scene switching.
  19. - ARLocationGoMapWebLoader: Bridges the `WebMapLoader` from the "AR+GPS Location" plugin
  20. with the GO Map asset. When the map scene is loaded, it
  21. will pin the `Map Pin Prefab` from the `PrefabDatabaseGoMap`
  22. to the map locations. When the AR Scene is loaded, it will
  23. place the `Prefab` in the geolocations.
  24. - GoMapPlaceAtLocations: Bridges the `PlaceAtLocations` component, in the same manner as the previous component.