- Basics
- Extended GUI
- Available features
- More
- Reference
- Examples
- Finishing
Navigation
Now you can navigate your users to your locations! Best way is to return a 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
Navigation can be called via internal URL "locify://navigation?lat=latitude&lon=longitude&name=name-of-point". You can use this internal URL in a link on the page or inside redirection.
Example (using redirection)
<?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> <meta http-equiv="refresh" content="0;url=locify://navigation?lat=50.1234&lon=14.1234&name=Prague" /> <title></title> </head> <body></body> </html>
How it looks like

