MapSDK

Display a map with a given identifier :

This method is used to display a map for a given unique identifier.

@param mapID: integer representing the map's unique identifier

@param callback: CallbackLoadMap called when map is ready to be displayed

@return void

Java
Kotlin
Copy

Change container color

This method permits to change the color of a specific container.

Java
Kotlin
Copy

Set an itinerary with a destination point :

This method is used to set an itinerary to a destination point without knowing the starting point.

@param destinationID: integer representing the destination point of the itinerary

@param callback: CallbackInt called with the floor info

@return void

Java
Kotlin
Copy

Set an itinerary from a starting point to a destination point :

This method is used to set an itinerary from a starting point to a destination point.

@param startID: Integer representing the starting point of the itinerary

@param destinationID: integer representing the destination point of the itinerary

@param callback: CallbackInt called with the floor info

@return void

Java
Kotlin
Copy

Highlight/Unhighlight a specific object on the map :

This method is used to highlight or unhighlight a specific object in the map.

@param isOutline: boolean representing if the object needs to be highlighted

@param idContainer: string representing the unique identifier of the map's object

@return void

Java
Kotlin
Copy

Clear an highlighted object on the map :

This method is used to clear the highlight of a specific object in the map.

@return void

Java
Kotlin
Copy

Enable/Disable free planar movements on the map :

This method is used to enable free planar movements on the map. If you enable them, you can move around the map using two fingers. By default, the free planar movements are not enabled.

@param state: boolean representing if the free planar movements are enabled or not

@return void

Java
Kotlin
Copy

Zoom in the map :

This method is used to zoom in the map.

@return void

Java
Kotlin
Copy

Zoom out the map :

This method is used to zoom out the map.

@return void

Java
Kotlin
Copy

Zoom on Container

This method is used to zoom on a Container

@param idContainer: String identifiant of Container

@return void

Java
Kotlin
Copy

Take a screenshot of the map :

This method is used to take a screenshot of the map and generates a QRCode in order to retrieve your screenshot.

@param callback: CallbackTakeScreenshot representing the screenshot taken as a Bitmap's image

@return void

Java
Kotlin
Copy

Get optimized products' itinerary from EANs :

This method is used to get an optimized itinerary for a list of products based on a list of EANs.

@param listOfEANs: ArrayList representing the list of EANs

@param callback: CallbackContainersFromEANS representing the list of products optimized for an itinerary

@return void

Java
Kotlin
Copy

Get optimized products' itinerary from product references :

This method is used to get an optimized itinerary for a list of products based on a list of product references.

@param listOfReferences: ArrayList representing the list of product references

@param callback: CallbackContainersFromEANS representing the list of products optimized for an itinerary

@return void

Java
Kotlin
Copy

Change camera's perspective of the map :

This method is used to change the camera's perspective of the map.

You can choose between two camera options :

  • TOP : Map camera is placed above the scene without perspective like in 2D
  • FPS : See map or Itinerary at the first person
  • GLOBAL3D : Broad 3D scene view
  • ITINERARY3D : 3D view focus on the itinerary
  • ITINERARY2D : 2D view focus on the itinerary

@param option: .CAMERA_VIEW___OPTIONS representing the camera view option chosen

@return void

Java
Kotlin
Copy

Enable/Disable FPS camera mode :

This method is used to enable/disable FPS camera mode. By default the FPS mode is disabled.

@param state: boolean representing if enable/disable FPS camera mode

@return void

Java
Kotlin
Copy

Clear current itinerary set on the map :

This method is used to clear the current itinerary set on the map.

@return void

Java
Kotlin
Copy

Set a clic listener on the map :

This method is used to set a clic listener on the map.

@param listener: MapFNO.CallbackJSON

@return void

Java
Kotlin
Copy

Adjust camera's speed rotation on the map :

This method is used to adjust the speed of the camera's rotation on the map.

@param speed: float representing the speed of the camera's rotation

@return void

Java
Kotlin
Copy

Stop camera's rotation on the map :

This method is used to stop the camera's rotation on the map.

@return void

Java
Kotlin
Copy

Get itinerary details displayed on the map :

This method is used to get the itinerary details displayed on the map.

@param callback: CallbackItineraryDetails representing the callback with the itinerary details

@return void

Java
Kotlin
Copy

Show all waypoints on the map :

This method is used to show all the waypoints on the map. A waypoint is a point of interest where something important is represented. For example, an event or an action to realize.

@param void

@return void

Java
Kotlin
Copy

Hide all waypoints on the map :

This method is used to hide all the waypoints on the map. A waypoint is a point of interest where something important is represented. For example, an event or an action to realize.

@param void

@return void

Java
Kotlin
Copy

Get all the waypoints displayed on the map :

This method is used to get the list of all the waypoints displayed on the map. A waypoint is a point of interest where something important is represented. For example, an event or an action to realize.

@param CallbackWaypoints representing the callback with the list of waypoints

@return void

Java
Kotlin
Copy

Enable magnetic geolocalization :

This method is used to enable magnetic geolozalisation on the map.

@param void

@return void

Java
Kotlin
Copy

Disable magnetic geolocalization :

This method is used to disable magnetic geolocalization on the map.

@param void

@return void

Java
Kotlin
Copy

Check if magnetic geolocalization is active :

This method is used to check if magnetic geolocalization on the map is active.

@param CallbackBoolean representing the callback with the activation state

@return void

Java
Kotlin
Copy

Get TCP server delay :

This method is used to get TCP server delay connexion.

@param CallbackFloat representing the callback with the server delay

@return void

Java
Kotlin
Copy

Datas

This method is used to get all information about the map, as :

  • ID
  • Rooms name
  • Description
  • Type
  • Asset's information
  • Logos

@param CallbackJSON representing the callback with meta datas

@return void

Java
Copy

Get map floor datas

Methods used to manage with map floors

Java
Copy
Type to search, ESC to discard
Type to search, ESC to discard
Type to search, ESC to discard
On This Page
MapSDK