It will be a pain if users need to re-entered their address each time that an address search feature is used. A better user experience would be to save the address in a cookie and allow them to select it again. Below are technical considerations:
Because the address search might be used with multiple addresses, saving only one address is limiting. Instead, an array of addresses should be saved. This is similar to how a browser remembers other fill-in-the-blank data, but I'm not sure we want to rely on that.
The addresses should be remembered across sessions. Therefore, using cookies may be the appropriate solution.
Need a way to let users select (if they want to), without cluttering up the UI.
It will be a pain if users need to re-entered their address each time that an address search feature is used. A better user experience would be to save the address in a cookie and allow them to select it again. Below are technical considerations: