11 lines
165 B
C#
11 lines
165 B
C#
using Mapbox.Utils;
|
|
|
|
namespace Mapbox.Unity.Map.Interfaces
|
|
{
|
|
public interface IUnifiedMap
|
|
{
|
|
void UpdateMap(Vector2d latLon, float zoom);
|
|
void ResetMap();
|
|
}
|
|
}
|