Interface OnCoordinatesListLoadedListener


  • public interface OnCoordinatesListLoadedListener
    An interface for listening to the result of the coordinate list functions
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onCoordinatesListLoaded​(java.util.Map<java.lang.String,​java.util.List<java.util.List<java.lang.Double>>> mapped_coordinates)
      Invoked when the function successfully retrieves a list of coordinates.
      void onCoordinatesListLoadFailure​(java.lang.Exception e)
      Invoked when the function fails to retrieve the list of coordinates.
    • Method Detail

      • onCoordinatesListLoaded

        void onCoordinatesListLoaded​(java.util.Map<java.lang.String,​java.util.List<java.util.List<java.lang.Double>>> mapped_coordinates)
        Invoked when the function successfully retrieves a list of coordinates.
        Parameters:
        mapped_coordinates - A map of qr string to a list of its coordinates.
      • onCoordinatesListLoadFailure

        void onCoordinatesListLoadFailure​(java.lang.Exception e)
        Invoked when the function fails to retrieve the list of coordinates.
        Parameters:
        e - The exception that caused the failure.