This package contains an isomorphic SDK for LocalSearchClient.
- Node.js version 6.x.x or higher
- Browser JavaScript
npm install @azure/cognitiveservices-localsearch
npm install @azure/ms-rest-azure-js
The following sample performs an local business search with the query 'Coffee 98052'. To know more, refer to the Azure Documentation on Bing Local Search
import { LocalSearchClient } from "@azure/cognitiveservices-localsearch";
import { CognitiveServicesCredentials } from "@azure/ms-rest-azure-js";
async function main(): Promise<void> {
const localSearchKey = process.env["localSearchKey"] || "<localSearchKey>";
const cognitiveServiceCredentials = new CognitiveServicesCredentials(
localSearchKey
);
const client = new LocalSearchClient(cognitiveServiceCredentials, {
baseUri: "https://api.cognitive.microsoft.com/"
});
client.local
.search("Coffee 98052")
.then(result => {
console.log("The result is: ");
result.places!.value.forEach(place => {
console.log(place);
});
})
.catch(err => {
console.log("An error occurred:");
console.error(err);
});
}
main();
- index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title>@azure/cognitiveservices-localsearch sample</title>
<script src="node_modules/@azure/ms-rest-js/dist/msRest.browser.js"></script>
<script src="node_modules/@azure/cognitiveservices-localsearch/dist/cognitiveservices-localsearch.js"></script>
<script type="text/javascript">
const localsearchKey = "<YOUR_LOCAL_SEARCH_KEY>";
const cognitiveServiceCredentials = new msRest.ApiKeyCredentials({
inHeader: {
"Ocp-Apim-Subscription-Key": localsearchKey
}
});
const client = new Azure.CognitiveservicesLocalsearch.LocalSearchClient(
cognitiveServiceCredentials,
{
baseUri: "https://api.cognitive.microsoft.com/"
}
);
client.local
.search("Coffee 98052")
.then(result => {
console.log("The result is: ");
result.places.value.forEach(place => {
console.log(place);
});
})
.catch(err => {
console.log("An error occurred:");
console.error(err);
});
</script>
</head>
<body></body>
</html>