GET api/V1/MapSearch/GetPinsAroundPoint?Lat={Lat}&Lon={Lon}&Dist={Dist}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Lat

decimal number

Required

Lon

decimal number

Required

Dist

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MapSearchResult
NameDescriptionTypeAdditional information
Lattitude

decimal number

None.

Longitude

decimal number

None.

Address

string

None.

Label

string

None.

KeyId

string

None.

LogoUrl

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Lattitude": 1.1,
    "Longitude": 2.1,
    "Address": "sample string 3",
    "Label": "sample string 4",
    "KeyId": "sample string 5",
    "LogoUrl": "sample string 6"
  },
  {
    "Lattitude": 1.1,
    "Longitude": 2.1,
    "Address": "sample string 3",
    "Label": "sample string 4",
    "KeyId": "sample string 5",
    "LogoUrl": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMapSearchResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MesHalles.Common.Objects">
  <MapSearchResult>
    <Address>sample string 3</Address>
    <KeyId>sample string 5</KeyId>
    <Label>sample string 4</Label>
    <Lattitude>1.1</Lattitude>
    <LogoUrl>sample string 6</LogoUrl>
    <Longitude>2.1</Longitude>
  </MapSearchResult>
  <MapSearchResult>
    <Address>sample string 3</Address>
    <KeyId>sample string 5</KeyId>
    <Label>sample string 4</Label>
    <Lattitude>1.1</Lattitude>
    <LogoUrl>sample string 6</LogoUrl>
    <Longitude>2.1</Longitude>
  </MapSearchResult>
</ArrayOfMapSearchResult>