The
will make it easier for developers to create applications that require accurate and detailed location based information by giving access to the extensive that have been created by .The JAMNAV API will provide very accurate geospatial data that augments the Google Maps platform. The JAMNAV API is Updated frequently by a team of geospatial experts operating out of Jamaica.
import requests
url = "https://api.jamnav.com/v1/settlments"
headers = {'Authorization': "Bearer "}
params = {'parish': , 'name': }
r = requests.get(url, params=params, headers=headers)
$.ajax({
type: 'GET',
dataType: 'json',
url: "https://api.jamnav.com/v1/settlments",
headers: {"Authorization": "Bearer "}
});
# Make Request
url = "https://api.jamnav.com/v1/settlements/"
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpGet(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
httpPost.setHeader("Authorization","Token " + token);
httpResponse = httpClient.execute(httpPost);
# Parse Response
httpEntity = httpResponse.getEntity();
stream = httpEntity.getContent();