From d60c1ba7caacfc1c96abaf0b7c5c100b60436323 Mon Sep 17 00:00:00 2001 From: LE-CUDENEC JOFFREY <joffrey.le-cudenec@etu.unistra.fr> Date: Thu, 16 Dec 2021 16:49:33 +0000 Subject: [PATCH] Delete SpawnOnMap.cs --- .../6_ZoomableMap/Scripts/SpawnOnMap.cs | 55 ------------------- 1 file changed, 55 deletions(-) delete mode 100644 T3-Unity/Assets/Mapbox/Examples/6_ZoomableMap/Scripts/SpawnOnMap.cs diff --git a/T3-Unity/Assets/Mapbox/Examples/6_ZoomableMap/Scripts/SpawnOnMap.cs b/T3-Unity/Assets/Mapbox/Examples/6_ZoomableMap/Scripts/SpawnOnMap.cs deleted file mode 100644 index 0b7042f..0000000 --- a/T3-Unity/Assets/Mapbox/Examples/6_ZoomableMap/Scripts/SpawnOnMap.cs +++ /dev/null @@ -1,55 +0,0 @@ -namespace Mapbox.Examples -{ - using UnityEngine; - using Mapbox.Utils; - using Mapbox.Unity.Map; - using Mapbox.Unity.MeshGeneration.Factories; - using Mapbox.Unity.Utilities; - using System.Collections.Generic; - - public class SpawnOnMap : MonoBehaviour - { - [SerializeField] - AbstractMap _map; - - [SerializeField] - [Geocode] - string[] _locationStrings; - Vector2d[] _locations; - - [SerializeField] - float _spawnScale = 100f; - - [SerializeField] - GameObject _markerPrefab; - - List<GameObject> _spawnedObjects; - - void Start() - { - _locations = new Vector2d[_locationStrings.Length]; - _spawnedObjects = new List<GameObject>(); - for (int i = 0; i < _locationStrings.Length; i++) - { - var locationString = _locationStrings[i]; - _locations[i] = Conversions.StringToLatLon(locationString); - var instance = Instantiate(_markerPrefab); - instance.transform.localPosition = _map.GeoToWorldPosition(_locations[i], true); - instance.transform.localScale = new Vector3(_spawnScale, _spawnScale, _spawnScale); - _spawnedObjects.Add(instance); - } - } - - private void Update() - { - int count = _spawnedObjects.Count; - for (int i = 0; i < count; i++) - { - var spawnedObject = _spawnedObjects[i]; - var location = _locations[i]; - spawnedObject.transform.localPosition = _map.GeoToWorldPosition(location, true); - spawnedObject.transform.localScale = new Vector3(_spawnScale, _spawnScale, _spawnScale); - } - } - } -} \ No newline at end of file -- GitLab