Skip to main content
Omnitracs Knowledge Base

LandmarkNames

Information about a landmark's name and aliases are implemented in the LandmarkNames object.  The attributes of the LandmarkNames object are:

 

Attribute

 

 

Description

 

name

A string of maximum length 25 containing the name of the landmark.

aliases[]

An array of strings, maximum length 25 characters each, containing additional aliases used to uniquely identify the landmark. 
(presently, a landmark can have a maximum of 5 aliases)

WSDL Definition

Here is how the LandmarkNames object is defined within the WSDL

<complexType name="LandmarkNames">

   <sequence>

      <element name="aliases" nillable="true" type="tns3:ArrayOfstring"/>

      <element name="name" nillable="true" type="xsd:string"/>

   </sequence>

</complexType>


 

Sample XML

Here is a sample showing what the LandmarkNames object would look like in XML

<LandmarkNames>

   <name>Superior Distribution Inc</name>

   <aliases>

      <string>SDI</string>

      <string>SuperDist</string>

   </aliases>

</LandmarkNames>

  • Was this article helpful?