How to add pins using the MapPinLayer?
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
foreach (var mapPinLocation in _maoPinLocations)
{
var mapPin = Instantiate(_mapPinPrefab);
mapPin.Location = mapPinLocation;
_mapPinLayer.MapPins.Add(mapPin);
}