Find Location FindLocation

Input + Button

Enter zip code or city to find nearby stores

With Location Icon

Location input with map pin icon

Use My Location

Button to use current location (geolocation)

Input Only (Enter to Search)

Press Enter to find locations

Sample Store Results

These would appear after a FindLocation event is triggered

Downtown Store

123 Main Street, San Francisco, CA 94102

0.3 miles away
Marina District

456 Chestnut Street, San Francisco, CA 94123

1.2 miles away
Mission Bay

789 Third Street, San Francisco, CA 94158

2.5 miles away
<!-- Input + Button -->
<div class="info-srch-ctnr-pf">
  <input
    type="text"
    class="action-inpt-loc-016-pf"
    placeholder="Enter zip code or city..."
  />
  <button class="action-btn-loc-017-pf">Find Stores</button>
</div>

<!-- Input Only (Enter key triggers search) -->
<div class="info-srch-ctnr-pf">
  <input
    type="text"
    class="action-inpt-loc-016-pf"
    placeholder="Enter address and press Enter..."
    style="width: 100%;"
  />
</div>

<!-- Button Only (Use My Location) -->
<div class="info-srch-ctnr-pf">
  <button class="action-btn-loc-017-pf" style="width: 100%;">
    Use My Location
  </button>
</div>