Shenandoah Attractions Map

Embeddable Widget

A drop-in <iframe> that puts the live Shenandoah Valley attractions map on any web page. No API key, no JavaScript, no build step.

The Snippet

Paste this in. It shows every attraction, a category filter bar, a satellite/street toggle, and a "Powered by Shenandoah.app" badge that links back.

<iframe
  src="https://www.shenandoah.app/embed/map"
  title="Shenandoah Valley Attractions Map"
  width="100%"
  height="520"
  style="border:0; border-radius:12px; box-shadow:0 2px 12px rgba(0,0,0,.12);"
  loading="lazy"
  referrerpolicy="no-referrer-when-downgrade">
</iframe>

Configuration

Add these query params to the src URL. Combine them with &.

Param
Example
Effect
category
?category=Winery,Brewery
Pre-filter to one or more categories.
lat lng
?lat=38.06&lng=-78.73
Re-center the initial view.
zoom
?zoom=11
Initial zoom level. Higher is closer.
filters
?filters=0
Hide the category filter bar.

Wineries-only map centered on Crozet:

<iframe
  src="https://www.shenandoah.app/embed/map?category=Winery&lat=38.06&lng=-78.73&zoom=11"
  width="100%" height="520" style="border:0;border-radius:12px" loading="lazy">
</iframe>