The geosearch-bundle
bundles the Algolia autocomplete and OpenCage GeoSearch plugin to search for places around the world. This bundle is for browser usage.
Links to the css and the script:
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@opencage/geosearch-bundle/dist/css/autocomplete-theme-classic.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/@opencage/geosearch-bundle"></script>
Container and code
<div id="place"></div>
<script type="text/javascript">
opencage.algoliaAutocomplete({
container: '#place',
plugins: [
opencage.OpenCageGeoSearchPlugin({
key: 'YOUR-GEOSEARCH-KEY',
}),
],
});
</script>
See Documentation.
See Demo.