12 lines
209 B
C#
12 lines
209 B
C#
using Mapbox.Utils;
|
|
|
|
namespace Mapbox.Unity.Map.Interfaces
|
|
{
|
|
public interface IUnifiedMap
|
|
{
|
|
//void InitializeMap(MapOptions options);
|
|
void UpdateMap(Vector2d latLon, float zoom);
|
|
void ResetMap();
|
|
}
|
|
}
|