ArcGis Plugin for Unity, add svg (military symbols) on map

429
2
Jump to solution
07-25-2022 03:53 AM
LuisKaiser
New Contributor II

Hello all,

I would like to add military symbols on an ArcGis map in Unity 3D with the ArcGis Plugin for Esri.

The problem is that the sdk is made to add 3D objects, but a military symbol is not a 3D object.

So I would like to add svg-files to the map.

So my question is, how can I add an image to a 3D map in ArcGis Map SDK for Unity.


Thanks for your help

0 Kudos
1 Solution

Accepted Solutions
Matt_Nelson
Esri Contributor

Hi Luis,

So first thing you posted this to the Runtime .NET board. For future reference post it here (I moved the post to the Unity board).

So what you are describing is a workflow in Unity not one specific to our SDK https://learn.unity.com/tutorial/importing-2d-assets-into-unity-2019-3#

I suggest that you do research on how to add images to the scene. You can then attach a location compnoent to these Game Objects to position them geographically and  then update the positions via a script. You can check out the feature layer sample in our Unity sample repo for an idea on how to do the later part https://github.com/Esri/arcgis-maps-sdk-unity-samples

View solution in original post

2 Replies
Matt_Nelson
Esri Contributor

Hi Luis,

So first thing you posted this to the Runtime .NET board. For future reference post it here (I moved the post to the Unity board).

So what you are describing is a workflow in Unity not one specific to our SDK https://learn.unity.com/tutorial/importing-2d-assets-into-unity-2019-3#

I suggest that you do research on how to add images to the scene. You can then attach a location compnoent to these Game Objects to position them geographically and  then update the positions via a script. You can check out the feature layer sample in our Unity sample repo for an idea on how to do the later part https://github.com/Esri/arcgis-maps-sdk-unity-samples

LuisKaiser
New Contributor II

Thank you very much its a good idea