Search Map Objects by Latitude and Longitude via REST API

Search the objects on the map using a latitude/longitude pair by sending a POST request to the Mapquest.com REST API. Replace {mapquest_apikey} with your own Mapquest API key.
Search Map Objects by Latitude and Longitude via REST API Send
POST /search/v2/radius?key={mapquest_apikey} HTTP/1.1
Host: www.mapquestapi.com
Content-Type: application/json
Content-Length: 132

{
  "origin": {
    "latLng": {
      "lat": 39.750307,
      "lng": -104.999472
    }
  },
  "options": {
    "maxMatches": 5
  }
}
Updated: Viewed: 6172 times

Generate Code Snippets for Search Map Objects By Latitude And Longitude Via REST API Example

Convert your Search Map Objects By Latitude And Longitude Via REST API request to the PHP, JavaScript/AJAX, Node.js, Curl/Bash, Python, Java, C#/.NET code snippets using the ReqBin code generator.