2021-03-30 17:27:50 +08:00

11 lines
165 B
C#

using Mapbox.Utils;
namespace Mapbox.Unity.Map.Interfaces
{
public interface IUnifiedMap
{
void UpdateMap(Vector2d latLon, float zoom);
void ResetMap();
}
}