Bias By IP
Biases search based on approximate geolocation of an IP address. Set bias_ip to true within queryOptions to enable.
Loading...
<form style="max-width: 450px; padding: 10px;"> <label for="line_1">Address First Line</label> <input type="text" id="line_1" /> <label for="line_2">Address Second Line</label> <input type="text" id="line_2" /> <label for="line_3">Address Third Line</label> <input type="text" id="line_3" /> <label for="post_town">Town or City</label> <input type="text" id="post_town" /> <label for="postcode">Postcode</label> <input type="text" id="postcode" /> </form>
import { AddressFinder } from "@ideal-postcodes/address-finder";
AddressFinder.setup({
apiKey: "ak_test",
queryOptions: {
// Set IP bias to prioritize addresses based on user's IP location
bias_ip: "true",
},
outputFields: {
line_1: "#line_1",
line_2: "#line_2",
line_3: "#line_3",
post_town: "#post_town",
postcode: "#postcode",
},
});