custom/plugins/NetiNextStoreLocator/src/Resources/views/storefront/store_locator/map.twig line 1

Open in your IDE?
  1. {% block neti_store_locator_map_container %}
  2.     <div class="map-container" ref="mapContainer">
  3.         {% block neti_store_locator_map %}
  4.             <div id="map" ref="map"></div>
  5.         {% endblock %}
  6.         {% block neti_store_locator_map_horizontal_stores %}
  7.             <div
  8.                     class="horizontal-stores"
  9.                     v-if="isMobile"
  10.                     :class="{ 'd-none': storeListing }"
  11.             >
  12.                 <neti-store-locator-store
  13.                         v-for="(store, key) in filteredStores"
  14.                         :map="map"
  15.                         :location="currentLocation"
  16.                         :config="config"
  17.                         :store="store" :key="key"
  18.                         :selected="selectedStore === store"
  19.                         :horizontal="true"
  20.                         :siblings="filteredStores"
  21.                 ></neti-store-locator-store>
  22.                 <div
  23.                         class="alert-empty-result w-100 empty-store-info"
  24.                         v-if="filteredStores.length <= 0 && !isLoadingStores && config.autoloadStores"
  25.                 >
  26.                     {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with {
  27.                         type:"warning",
  28.                         content: "neti-next-store-locator.index.search.filterNoResults"|trans
  29.                     } %}
  30.                 </div>
  31.             </div>
  32.         {% endblock %}
  33.     </div>
  34. {% endblock %}