You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

38 lines
816 B

  1. using System;
  2. namespace CI.WSANative.Mapping
  3. {
  4. public static class WSANativeMap
  5. {
  6. public static void CreateMap(string mapServiceToken, int width, int height, WSAPosition position, WSAGeoPoint center, int zoomLevel, WSAMapInteractionMode interactionMode)
  7. {
  8. }
  9. public static void CenterMap(WSAGeoPoint position, int zoomLevel = -1)
  10. {
  11. }
  12. public static void AddMapElement(string title, WSAGeoPoint location, string imageUri = null)
  13. {
  14. }
  15. public static void ClearMap()
  16. {
  17. }
  18. public static void DestroyMap()
  19. {
  20. }
  21. public static Action<WSAMapSettings> Create;
  22. public static Action<WSAMapSettings> CenterMapToLocation;
  23. public static Action<WSAMapItem> AddElementToMap;
  24. public static Action ClearMapElements;
  25. public static Action Destroy;
  26. }
  27. }