Navigation

Now you can navigate your users to your locations! Best way is to return an KML waypoint. User will read the waypoint description and decides, if he wants to navigate to this point. Howewer, you can call navigation directly.

Format

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:locify="http://client.locify.com/locify_ns/1.0" xml:lang="en" lang="en">
  <head>
    <locify:call url="locify://navigator?lat=Latitude&lon=Longitude&name=Name-of-point" />
    <title></title>
  </head>
  <body></body>
</html>

Parameters

  • Latitude - Latitude of point in decimal format
  • Longitude - Longitude of point in decimal format
  • Name-of-point - Name of point shown in navigation

Example

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:locify="http://client.locify.com/locify_ns/1.0" xml:lang="en" lang="en">
  <head>
    <locify:call url="locify://navigator?lat=50.1234&lon=14.1234&name=Prague" />
    <title></title>
  </head>
  <body></body>
</html>

How it looks like

Navigation screenshot