getClosestLandmark
Get Landmark from Address Book closest to Location within a range.
Landmarks are fixed geographical locations that are important to your business, such as customer offices, your company's offices and warehouses, and drop-off points for shipping companies. You can mark important addresses as landmarks to display them on the maps and reports.
getClosestLandmarkRequest
Request to get closest Landmark.
Object Fields
NameTypeRequiredDescription
wsAdminTdxAdminYesAdmin Credentials
range int Yes Range in meters. Default 200m.
Landmarks outside this range will be ignored.
latdoubleYesLatitude of the Location
londoubleYesLongitude of the Location


XML Example:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
  <ns1:getClosestLandmark soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns">
   <wsAdmin href="#id0"/>
   <range href="#id1"/>
   <lat href="#id2"/>
   <lon href="#id3"/>
  </ns1:getClosestLandmark>
  <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">1000</multiRef>
  <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:double" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">37.38059</multiRef>
  <multiRef id="id3" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:double" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">-122.0045</multiRef>
  <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:TdxAdmin" xmlns:ns2="http://www.telenavtrack.net/schema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
   <email xsi:type="xsd:string">1251426866775@telenav.com</email>
   <password xsi:type="xsd:string">password</password>
  </multiRef>
 </soapenv:Body>
</soapenv:Envelope>
		



getClosestLandmarkResponse
Closest Landmark.
Object Fields
NameTypeRequired
getClosestLandmarkReturnTdxLandmarkYes


XML Example:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
  <ns1:getClosestLandmarkResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:tns">
   <getClosestLandmarkReturn xsi:type="ns2:TdxLandmark" xsi:nil="true" xmlns:ns2="http://www.telenavtrack.net/schema"/>
  </ns1:getClosestLandmarkResponse>
 </soapenv:Body>
</soapenv:Envelope>