// Default infoBox Rating Type


   
      

    // ---------------- Main Map / End ---------------- //


    // Single Listing Map
    // ----------------------------------------------- //

    $(document).ready(function () { 
      singleListingMap();
            
    });

    function singleListingMap() {

      //alert($( '#singleListingMap' ).data('longitude'), $( '#singleListingMap' ).data('latitude'));

      var LeafIcon = L.Icon.extend({
        options: {
          iconSize:     [64, 64],
          iconAnchor:   [40, 36]
        }
      });      
    var Icon = new LeafIcon({iconUrl: '/images/pin.png'});
     
      var zoom = 16;
      var map = L.map('singleListingMap').setView([$( '#singleListingMap' ).data('latitude'), $( '#singleListingMap' ).data('longitude')], zoom);
      L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
        attribution: '&copy; OpenStreetMap'
      }).addTo(map);
      L.marker([$( '#singleListingMap' ).data('latitude'), $( '#singleListingMap' ).data('longitude')], {icon: Icon}).addTo(map);
          
      }

      
    // -------------- Custom Map Marker / End -------------- //



