qr-l24.be Open in urlscan Pro
2a06:2ec0:1:e::147  Public Scan

URL: https://qr-l24.be/
Submission: On November 23 via api from BE — Scanned from DE

Form analysis 10 forms found in the DOM

<form action="" style="padding: 0px 15px;">
  <p class="text-center">You are here:</p>
  <div id="geolocati" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px;">
    <span class="location" id="locaatJ1"></span>
  </div>
  <p class="text-center txt777" id="lat_long"></p>
  <script>
    $(document).ready(function() {
      if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(function(position) {
          var lat = position.coords.latitude;
          var long = position.coords.longitude;
          $('#lat_long').text('Latitude: ' + lat + ', Longitude: ' + long);
        }, function() {
          alert('Geolocation service failed.');
        });
      } else {
        alert('Your browser doesn\'t support geolocation.');
      }
    });
  </script>
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <div class="form-group">
    <select class="form-control" id="firstDropdownG">
      <option value="">Category</option>
      <option value="3">Tourism</option>
      <option value="4">Culture</option>
      <option value="5">Sleep</option>
      <option value="6">Shopping</option>
      <option value="7">Eat</option>
      <option value="8">Drink</option>
      <option value="9">Nightlife</option>
      <option value="10">Sports</option>
    </select>
  </div>
  <div class="form-group">
    <select class="form-control" id="secondDropdownG" disabled="">
      <option value="">Category</option>
    </select>
  </div>
  <script>
    $(document).ready(function() {
      var secondOptions = {
        3: ['Select', 'Tourist attraction', 'Museum', 'Monument', 'Statue', 'Place', 'Park', 'View', 'Other'],
        4: ['Select', 'Concert', 'Festival', 'Theater', 'Art', 'Fashion', 'Exhibition', 'Children', 'Other'],
        5: ['Select', 'Hotel', 'Hotel 4*/5*', 'B&B', 'Hostel', 'Rooms', 'Day hotel', 'Camping', 'Other'],
        6: ['Select', 'Shopping centers', 'Supermarkets', 'Grocers', 'Food', 'Drinks', 'Fashion', 'Men Fashion', 'Women Fashion', 'Perfumeries', 'Lingerie', 'Shoes', 'Baby & Children', 'Health & Beauty', 'Opticians', 'Electronics',
          'Books & gifts', 'Office supplies', 'Kitchens & Bathrooms', 'Bedding', 'Toys & Games', 'Sports & outdoor', 'Garden', 'Drugstores', 'DIY stores', 'Other'
        ],
        7: ['Select', 'Restaurant', 'Haute Cuisine', 'Brasserie', 'Friterie', 'Chicken', 'Pasta', 'Snackbar', 'Kebab/Pitta', 'Fastfood', 'Pancake, waffles', 'Flemish', 'Italian', 'Greek', 'Spanish', 'Portugese', 'Mexican', 'Chinese', 'Thai',
          'Indian', 'Swiss', 'Slavian', 'Other'
        ],
        8: ['Select', 'Cafe', 'Dance cafe', 'Brasserie', 'Tearoom', 'Bar', 'American Bar', 'Irish Pub', 'Other'],
        9: ['Select', 'Dancing', 'Nightclub', 'Dance cafe', 'Techno', 'Rock', 'Blues', 'Jazz', 'Dance club', 'Adult bar', 'Other'],
        10: ['Select', 'Football', 'Basketball', 'Brasserie', 'Friterie', 'Chicken', 'Pasta', 'Snackbar', 'Kebab/Pitta', 'Fastfood', 'Pancake, waffles', 'Flemish', 'Italian', 'Greek', 'Spanish', 'Portugese', 'Mexican', 'Chinese', 'Thai',
          'Indian', 'Swiss', 'Slavian', 'Other'
        ]
      };
      var thirdOptions = {
        'Sub-option 6-1': ['Detail 1-1-1', 'Detail 1-1-2'],
        'Sub-option 6-2': ['Detail 1-2-1', 'Detail 1-2-2'],
        'Sub-option 6-3': ['Detail 2-1-1', 'Detail 2-1-2'],
        'Sub-option 6-4': ['Detail 2-2-1', 'Detail 2-2-2']
      };
      $('#firstDropdownG').change(function() {
        var firstValue = $(this).val();
        $('#secondDropdownG').empty().prop('disabled', false);
        $('#thirdDropdownG').empty().prop('disabled', true);
        if (firstValue) {
          $.each(secondOptions[firstValue], function(index, value) {
            $('#secondDropdownG').append($('<option>').text(value).attr('value', value));
          });
        }
      });
      $('#secondDropdownG').change(function() {
        var secondValue = $(this).val();
        $('#thirdDropdownG').empty().prop('disabled', false);
        if (secondValue) {
          $.each(thirdOptions[secondValue], function(index, value) {
            $('#thirdDropdownG').append($('<option>').text(value).attr('value', value));
          });
        }
      });
    });
  </script>
  <div class="over text-center mb-10">
    <a class="btn btn-success" data-dismiss="modal">Add</a>
    <a type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
</form>

<form action="" style="padding: 0px 5px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div><!--
						  <p class="text-center">
						  	<a class="btn btn-sm btn-default" onclick="selGeo()" id="act1">Select my geolocation</a>
						  	<a onclick="selManAddr()" id="act2" style="display: none;">Manual entry address</a>
						  </p>-->
  <div id="fullAddr" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="mapsLink" placeholder="link Google Maps">
    </div>
  </div>
  <div class="form-group">
    <select class="form-control" id="firstDropdown">
      <option value="">Category</option>
      <option value="3">Tourism</option>
      <option value="4">Culture</option>
      <option value="5">Sleep</option>
      <option value="6">Shopping</option>
      <option value="7">Eat</option>
      <option value="8">Drink</option>
      <option value="9">Nightlife</option>
      <option value="10">Sports</option>
    </select>
  </div>
  <div class="form-group">
    <select class="form-control" id="secondDropdown" disabled="">
      <option value="">Category</option>
    </select>
  </div>
  <!-- <div class="form-group">
				            <label for="thirdDropdown">Third Dropdown:</label>
				            <select class="form-control" id="thirdDropdown" disabled>
				                <option value="">Select</option>
				            </select>
				        </div>-->
  <script>
    $(document).ready(function() {
      var secondOptions = {
        3: ['Select', 'Tourist attraction', 'Museum', 'Monument', 'Statue', 'Park', 'Bridge', 'Other'],
        4: ['Select', 'Concert', 'Festival', 'Theater', 'Art', 'Fashion', 'Exhibition', 'Children', 'Other'],
        5: ['Select', 'Hotel', 'Hotel 4*/5*', 'B&B', 'Hostel', 'Rooms', 'Day hotel', 'Camping', 'Other'],
        6: ['Select', 'Shopping centers', 'Supermarkets', 'Grocers', 'Food', 'Drinks', 'Fashion', 'Men Fashion', 'Women Fashion', 'Perfumeries', 'Lingerie', 'Shoes', 'Baby & Children', 'Health & Beauty', 'Opticians', 'Electronics',
          'Books & gifts', 'Office supplies', 'Kitchens & Bathrooms', 'Bedding', 'Toys & Games', 'Sports & outdoor', 'Garden', 'Drugstores', 'DIY stores', 'Other'
        ],
        7: ['Select', 'Restaurant', 'Haute Cuisine', 'Brasserie', 'Friterie', 'Chicken', 'Pasta', 'Snackbar', 'Kebab/Pitta', 'Fastfood', 'Pancake, waffles', 'Flemish', 'Italian', 'Greek', 'Spanish', 'Portugese', 'Mexican', 'Chinese', 'Thai',
          'Indian', 'Swiss', 'Slavian', 'Other'
        ],
        8: ['Select', 'Cafe', 'Dance cafe', 'Brasserie', 'Tearoom', 'Bar', 'American Bar', 'Irish Pub', 'Other'],
        9: ['Select', 'Dancing', 'Nightclub', 'Dance cafe', 'Techno', 'Rock', 'Blues', 'Jazz', 'Dance club', 'Adult bar', 'Other'],
        10: ['Select', 'Football', 'Basketball', 'Brasserie', 'Friterie', 'Chicken', 'Pasta', 'Snackbar', 'Kebab/Pitta', 'Fastfood', 'Pancake, waffles', 'Flemish', 'Italian', 'Greek', 'Spanish', 'Portugese', 'Mexican', 'Chinese', 'Thai',
          'Indian', 'Swiss', 'Slavian', 'Other'
        ]
      };
      var thirdOptions = {
        'Sub-option 6-1': ['Detail 1-1-1', 'Detail 1-1-2'],
        'Sub-option 6-2': ['Detail 1-2-1', 'Detail 1-2-2'],
        'Sub-option 6-3': ['Detail 2-1-1', 'Detail 2-1-2'],
        'Sub-option 6-4': ['Detail 2-2-1', 'Detail 2-2-2']
      };
      $('#firstDropdown').change(function() {
        var firstValue = $(this).val();
        $('#secondDropdown').empty().prop('disabled', false);
        $('#thirdDropdown').empty().prop('disabled', true);
        if (firstValue) {
          $.each(secondOptions[firstValue], function(index, value) {
            $('#secondDropdown').append($('<option>').text(value).attr('value', value));
          });
        }
      });
      $('#secondDropdown').change(function() {
        var secondValue = $(this).val();
        $('#thirdDropdown').empty().prop('disabled', false);
        if (secondValue) {
          $.each(thirdOptions[secondValue], function(index, value) {
            $('#thirdDropdown').append($('<option>').text(value).attr('value', value));
          });
        }
      });
    });
  </script>
  <!-- <p class="text-center">
						  	<a class="btn btn-sm btn-default" onclick="insDate()" id="act3">Insert date</a>
						  	<a onclick="delDate()" id="act4" style="display: none;">Cancel date</a>
						  </p>
						  <div id="dateM" class="over" style="display: none">
							  <div class="form-group">
								  <div class="row">
								    <div class="col-md-6">
							            <div class="form-group">
							                <div class='input-group date' id='datetimepicker1'>
							                    <input type='text' class="form-control" />
							                    <span class="input-group-addon">
							                        <!--<span class="glyphicon glyphicon-calendar"></span>
							                        <i class="fa-solid fa-table-cells"></i>
							                    </span>
							                </div>
							            </div>
							        </div>
								  </div>
							  </div>
						  </div>-->
  <script>
    function insDate() {
      document.getElementById('dateM').style.display = ('block');
      document.getElementById('act4').style.display = ('inline-block');
      document.getElementById('act3').style.display = ('none');
    }
  </script>
  <script>
    function delDate() {
      document.getElementById('dateM').style.display = ('none');
      document.getElementById('act4').style.display = ('none');
      document.getElementById('act3').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a class="btn btn-success" data-dismiss="modal">Add</a>
    <a type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
</form>

<form action="" style="padding: 0px 15px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="selGeoA()" id="act50">Select my geolocation</a>
    <a onclick="selManAddrA()" id="act51" style="display: none;">Manual entry address</a>
  </p>
  <div id="fullAddrA" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
  </div>
  <div id="geolocatiA" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px; display: none;">
    <span class="location" id="locaat"></span>
  </div>
  <script>
    function selGeoA() {
      document.getElementById('geolocatiA').style.display = ('block');
      document.getElementById('fullAddrA').style.display = ('none');
      document.getElementById('act51').style.display = ('inline-block');
      document.getElementById('act50').style.display = ('none');
    }
  </script>
  <script>
    function selManAddrA() {
      document.getElementById('geolocatiA').style.display = ('none');
      document.getElementById('fullAddrA').style.display = ('block');
      document.getElementById('act51').style.display = ('none');
      document.getElementById('act50').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a onclick="addAddress()" class="btn btn-success" data-dismiss="modal">Add</a>
    <a type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
  <script>
    function addAddress() {
      document.getElementById('atu4').style.display = ('inline-block');
      document.getElementById('atu3').style.display = ('none');
    }
  </script>
</form>

<form action="" style="padding: 0px 15px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="selGeoB()" id="act1A">Select my geolocation</a>
    <a onclick="selManAddrB()" id="act2A" style="display: none;">Manual entry address</a>
  </p>
  <div id="fullAddrB" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
  </div>
  <div id="geolocatiB" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px; display: none;">
    <span class="location" id="locaat"></span>
  </div>
  <script>
    function selGeoB() {
      document.getElementById('geolocatiB').style.display = ('block');
      document.getElementById('fullAddrB').style.display = ('none');
      document.getElementById('act2A').style.display = ('block');
      document.getElementById('act1A').style.display = ('none');
    }
  </script>
  <script>
    function selManAddrB() {
      document.getElementById('geolocatiB').style.display = ('none');
      document.getElementById('fullAddrB').style.display = ('block');
      document.getElementById('act2A').style.display = ('none');
      document.getElementById('act1A').style.display = ('block');
    }
  </script>
  <div class="form-group">
    <select class="form-control" id="firstDropdown">
      <option value="">Category</option>
      <option value="1">Tourist attraction</option>
      <option value="2">Museum</option>
      <option value="3">Monument</option>
      <option value="4">Statue</option>
      <option value="5">Place, square</option>
      <option value="10">Architecture</option>
      <option value="6">Park</option>
      <option value="7">Bridge</option>
      <option value="8">View</option>
      <option value="9">Other</option>
    </select>
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="insDateB()" id="act3B">Insert date visit</a>
    <a onclick="delDateB()" id="act4B" style="display: none;">Cancel date visit</a>
  </p>
  <div id="dateMB" class="over" style="display: none">
    <div class="form-group">
      <div class="row text-center">
        <div class="col-md-offset-2 col-md-8">
          <div class="form-group">
            <div class="input-group date" id="datetimepicker1">
              <input type="text" class="form-control">
              <span class="input-group-addon">
                <!--<span class="glyphicon glyphicon-calendar"></span>-->
                <i class="fa-solid fa-table-cells" aria-hidden="true"></i>
              </span>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <script>
    function insDateB() {
      document.getElementById('dateMB').style.display = ('block');
      document.getElementById('act4B').style.display = ('inline-block');
      document.getElementById('act3B').style.display = ('none');
    }
  </script>
  <script>
    function delDateB() {
      document.getElementById('dateMB').style.display = ('none');
      document.getElementById('act4B').style.display = ('none');
      document.getElementById('act3B').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a onclick="addJ1()" class="btn btn-success" data-dismiss="modal">Add</a>
    <a onclick="delJ1()" type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
  <script>
    function addJ1() {
      document.getElementById('atu8B').style.display = ('inline-block');
      document.getElementById('atu7B').style.display = ('none');
    }
  </script>
  <script>
    function delJ1() {
      document.getElementById('atu8B').style.display = ('inline-block');
      document.getElementById('atu8B').style.display = ('none');
    }
  </script>
</form>

<form action="" style="padding: 0px 15px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="selGeoC()" id="act1C">Select my geolocation</a>
    <a onclick="selManAddrC()" id="act2C" style="display: none;">Manual entry address</a>
  </p>
  <div id="fullAddrC" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
  </div>
  <div id="geolocatiC" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px; display: none;">
    <span class="location" id="locaat"></span>
  </div>
  <script>
    function selGeoC() {
      document.getElementById('geolocatiC').style.display = ('block');
      document.getElementById('fullAddrC').style.display = ('none');
      document.getElementById('act2C').style.display = ('inline-block');
      document.getElementById('act1C').style.display = ('none');
    }
  </script>
  <script>
    function selManAddrC() {
      document.getElementById('geolocatiC').style.display = ('none');
      document.getElementById('fullAddrC').style.display = ('block');
      document.getElementById('act2C').style.display = ('none');
      document.getElementById('act1C').style.display = ('inline-block');
    }
  </script>
  <div class="form-group">
    <select class="form-control" id="firstDropdown">
      <option value="">Category</option>
      <option value="1">Concert</option>
      <option value="2">Festival</option>
      <option value="3">Theater</option>
      <option value="3">Conference, lecture</option>
      <option value="3">Politics</option>
      <option value="3">Culinary</option>
      <option value="3">Service Club</option>
      <option value="5">Fashion</option>
      <option value="4">Art</option>
      <option value="10">Exhibition</option>
      <option value="8">Auction</option>
      <option value="6">Children</option>
      <option value="7">Market</option>
      <option value="7">Evening Market</option>
      <option value="7">Flea Market</option>
      <option value="7">Bio Market</option>
      <option value="7">Christmas Market</option>
      <option value="9">Other</option>
    </select>
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="insDateC1()" id="act3C">Insert date (event)</a>
    <a onclick="delDateC1()" id="act4C" style="display: none;">Cancel date (event)</a>
  </p>
  <div id="dateMC" class="over" style="display: none">
    <div class="form-group">
      <div class="row text-center">
        <div class="col-md-offset-2 col-md-8">
          <div class="form-group">
            <div class="input-group date" id="datetimepicker1">
              <input type="text" class="form-control">
              <span class="input-group-addon">
                <!--<span class="glyphicon glyphicon-calendar"></span>-->
                <i class="fa-solid fa-table-cells" aria-hidden="true"></i>
              </span>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <script>
    function insDateC1() {
      document.getElementById('dateMC').style.display = ('block');
      document.getElementById('act4C').style.display = ('inline-block');
      document.getElementById('act3C').style.display = ('none');
    }
  </script>
  <script>
    function delDateC1() {
      document.getElementById('dateMC').style.display = ('none');
      document.getElementById('act4C').style.display = ('none');
      document.getElementById('act3C').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a onclick="insDateC()" class="btn btn-success" data-dismiss="modal">Add</a>
    <a onclick="delDateC()" type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
  <script>
    function insDateC() {
      document.getElementById('atu8C').style.display = ('inline-block');
      document.getElementById('atu7C').style.display = ('none');
    }
  </script>
  <script>
    function delDateC() {
      document.getElementById('atu7C').style.display = ('inline-block');
      document.getElementById('atu7C').style.display = ('none');
    }
  </script>
</form>

<form action="" style="padding: 0px 15px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="selGeoD()" id="act1D">Select my geolocation</a>
    <a onclick="selManAddrD()" id="act2D" style="display: none;">Manual entry address</a>
  </p>
  <div id="fullAddrD" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
  </div>
  <div id="geolocatiD" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px; display: none;">
    <span class="location" id="locaat"></span>
  </div>
  <script>
    function selGeoD() {
      document.getElementById('geolocatiD').style.display = ('block');
      document.getElementById('fullAddrD').style.display = ('none');
      document.getElementById('act2D').style.display = ('block');
      document.getElementById('act1D').style.display = ('none');
    }
  </script>
  <script>
    function selManAddrD() {
      document.getElementById('geolocatiD').style.display = ('none');
      document.getElementById('fullAddrD').style.display = ('block');
      document.getElementById('act2D').style.display = ('none');
      document.getElementById('act1D').style.display = ('block');
    }
  </script>
  <div class="form-group">
    <select class="form-control" id="firstDropdown">
      <option value="">Restaurant</option>
      <option value="1">Haute Cuisine</option>
      <option value="2">Brasserie</option>
      <option value="3">Friterie</option>
      <option value="3">Chicken</option>
      <option value="3">Pasta</option>
      <option value="3">Snackbar</option>
      <option value="3">Kebab/Pitta</option>
      <option value="5">Fastfood</option>
      <option value="4">Pancake, waffles</option>
      <option value="10">Flemisch kitchen</option>
      <option value="10">Italian kitchen</option>
      <option value="10">Greek kitchen</option>
      <option value="10">Spanish kitchen</option>
      <option value="10">Portugese kitchen</option>
      <option value="10">Mexican kitchen</option>
      <option value="10">Chinese kitchen</option>
      <option value="10">Thai kitchen</option>
      <option value="10">Indian kitchen</option>
      <option value="10">Eastern kitchen</option>
      <option value="10">Swiss kitchen</option>
      <option value="10">Slavian kitchen</option>
      <option value="9">Other</option>
    </select>
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="insDateD2()" id="act3D2">Insert date (event)</a>
    <a onclick="delDateD2()" id="act4D2" style="display: none;">Cancel date (event)</a>
  </p>
  <div id="dateMD2" class="over" style="display: none">
    <div class="form-group">
      <div class="row text-center">
        <div class="col-md-offset-2 col-md-8">
          <div class="form-group">
            <div class="input-group date" id="datetimepicker1">
              <input type="text" class="form-control">
              <span class="input-group-addon">
                <!--<span class="glyphicon glyphicon-calendar"></span>-->
                <i class="fa-solid fa-table-cells" aria-hidden="true"></i>
              </span>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <script>
    function insDateD2() {
      document.getElementById('dateMD2').style.display = ('block');
      document.getElementById('act4D2').style.display = ('inline-block');
      document.getElementById('act3D2').style.display = ('none');
    }
  </script>
  <script>
    function delDateD2() {
      document.getElementById('dateMD2').style.display = ('none');
      document.getElementById('act4D2').style.display = ('none');
      document.getElementById('act3D2').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a onclick="addD1()" class="btn btn-success" data-dismiss="modal">Add</a>
    <a onclick="delD1()" type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
  <script>
    function addD1() {
      document.getElementById('atu9D1').style.display = ('inline-block');
      document.getElementById('atu8D1').style.display = ('none');
    }
  </script>
  <script>
    function delD1() {
      document.getElementById('atu8D1').style.display = ('inline-block');
      document.getElementById('atu9D1').style.display = ('none');
    }
  </script>
</form>

<form action="" style="padding: 0px 15px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="selGeoF()" id="act1F">Select my geolocation</a>
    <a onclick="selManAddrF()" id="act2F" style="display: none;">Manual entry address</a>
  </p>
  <div id="fullAddrF" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
  </div>
  <div id="geolocatiF" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px; display: none;">
    <span class="location" id="locaat"></span>
  </div>
  <script>
    function selGeoF() {
      document.getElementById('geolocatiF').style.display = ('block');
      document.getElementById('fullAddrF').style.display = ('none');
      document.getElementById('act2F').style.display = ('block');
      document.getElementById('act1F').style.display = ('none');
    }
  </script>
  <script>
    function selManAddrF() {
      document.getElementById('geolocatiF').style.display = ('none');
      document.getElementById('fullAddrF').style.display = ('block');
      document.getElementById('act2F').style.display = ('none');
      document.getElementById('act1F').style.display = ('block');
    }
  </script>
  <div class="form-group">
    <select class="form-control" id="firstDropdown">
      <option value="">Restaurant</option>
      <option value="1">Haute Cuisine</option>
      <option value="2">Brasserie</option>
      <option value="3">Friterie</option>
      <option value="3">Chicken</option>
      <option value="3">Pasta</option>
      <option value="3">Snackbar</option>
      <option value="3">Kebab/Pitta</option>
      <option value="5">Fastfood</option>
      <option value="4">Pancake, waffles</option>
      <option value="10">Flemisch kitchen</option>
      <option value="10">Italian kitchen</option>
      <option value="10">Greek kitchen</option>
      <option value="10">Spanish kitchen</option>
      <option value="10">Portugese kitchen</option>
      <option value="10">Mexican kitchen</option>
      <option value="10">Chinese kitchen</option>
      <option value="10">Thai kitchen</option>
      <option value="10">Indian kitchen</option>
      <option value="10">Eastern kitchen</option>
      <option value="10">Swiss kitchen</option>
      <option value="10">Slavian kitchen</option>
      <option value="9">Other</option>
    </select>
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="insDateF2()" id="act3F2">Insert date (event)</a>
    <a onclick="delDateF2()" id="act4F2" style="display: none;">Cancel date (event)</a>
  </p>
  <div id="dateMF2" class="over" style="display: none">
    <div class="form-group">
      <div class="row text-center">
        <div class="col-md-offset-2 col-md-8">
          <div class="form-group">
            <div class="input-group date" id="datetimepicker1">
              <input type="text" class="form-control">
              <span class="input-group-addon">
                <!--<span class="glyphicon glyphicon-calendar"></span>-->
                <i class="fa-solid fa-table-cells" aria-hidden="true"></i>
              </span>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <script>
    function insDateF2() {
      document.getElementById('dateMF2').style.display = ('block');
      document.getElementById('act4F2').style.display = ('inline-block');
      document.getElementById('act3F2').style.display = ('none');
    }
  </script>
  <script>
    function delDateF2() {
      document.getElementById('dateMF2').style.display = ('none');
      document.getElementById('act4F2').style.display = ('none');
      document.getElementById('act3F2').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a onclick="addF1()" class="btn btn-success" data-dismiss="modal">Add</a>
    <a onclick="delF1()" type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
  <script>
    function addF1() {
      document.getElementById('atu9F1').style.display = ('inline-block');
      document.getElementById('atu8F1').style.display = ('none');
    }
  </script>
  <script>
    function delF1() {
      document.getElementById('atu8F1').style.display = ('inline-block');
      document.getElementById('atu9F1').style.display = ('none');
    }
  </script>
</form>

<form action="" style="padding: 0px 15px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="selGeoG()" id="act1G">Select my geolocation</a>
    <a onclick="selManAddrG()" id="act2G" style="display: none;">Manual entry address</a>
  </p>
  <div id="fullAddrG" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
  </div>
  <div id="geolocatiG" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px; display: none;">
    <span class="location" id="locaat"></span>
  </div>
  <script>
    function selGeoG() {
      document.getElementById('geolocatiG').style.display = ('block');
      document.getElementById('fullAddrG').style.display = ('none');
      document.getElementById('act2G').style.display = ('block');
      document.getElementById('act1G').style.display = ('none');
    }
  </script>
  <script>
    function selManAddrG() {
      document.getElementById('geolocatiG').style.display = ('none');
      document.getElementById('fullAddrG').style.display = ('block');
      document.getElementById('act2G').style.display = ('none');
      document.getElementById('act1G').style.display = ('block');
    }
  </script>
  <div class="form-group">
    <select class="form-control" id="firstDropdown">
      <option value="">Restaurant</option>
      <option value="1">Haute Cuisine</option>
      <option value="2">Brasserie</option>
      <option value="3">Friterie</option>
      <option value="3">Chicken</option>
      <option value="3">Pasta</option>
      <option value="3">Snackbar</option>
      <option value="3">Kebab/Pitta</option>
      <option value="5">Fastfood</option>
      <option value="4">Pancake, waffles</option>
      <option value="10">Flemisch kitchen</option>
      <option value="10">Italian kitchen</option>
      <option value="10">Greek kitchen</option>
      <option value="10">Spanish kitchen</option>
      <option value="10">Portugese kitchen</option>
      <option value="10">Mexican kitchen</option>
      <option value="10">Chinese kitchen</option>
      <option value="10">Thai kitchen</option>
      <option value="10">Indian kitchen</option>
      <option value="10">Eastern kitchen</option>
      <option value="10">Swiss kitchen</option>
      <option value="10">Slavian kitchen</option>
      <option value="9">Other</option>
    </select>
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="insDateG2()" id="act3G2">Insert date (event)</a>
    <a onclick="delDateG2()" id="act4G2" style="display: none;">Cancel date (event)</a>
  </p>
  <div id="dateMG2" class="over" style="display: none">
    <div class="form-group">
      <div class="row text-center">
        <div class="col-md-offset-2 col-md-8">
          <div class="form-group">
            <div class="input-group date" id="datetimepicker1">
              <input type="text" class="form-control">
              <span class="input-group-addon">
                <!--<span class="glyphicon glyphicon-calendar"></span>-->
                <i class="fa-solid fa-table-cells" aria-hidden="true"></i>
              </span>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <script>
    function insDateG2() {
      document.getElementById('dateMG2').style.display = ('block');
      document.getElementById('act4G2').style.display = ('inline-block');
      document.getElementById('act3G2').style.display = ('none');
    }
  </script>
  <script>
    function delDateG2() {
      document.getElementById('dateMG2').style.display = ('none');
      document.getElementById('act4G2').style.display = ('none');
      document.getElementById('act3G2').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a onclick="addG1()" class="btn btn-success" data-dismiss="modal">Add</a>
    <a onclick="delG1()" type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
  <script>
    function addG1() {
      document.getElementById('atu9G1').style.display = ('inline-block');
      document.getElementById('atu8G1').style.display = ('none');
    }
  </script>
  <script>
    function delG1() {
      document.getElementById('atu8G1').style.display = ('inline-block');
      document.getElementById('atu9G1').style.display = ('none');
    }
  </script>
</form>

<form action="" style="padding: 0px 15px;">
  <div class="form-group">
    <input type="text" class="form-control" id="nameAddress" placeholder="Name">
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="selGeoH()" id="act1H">Select my geolocation</a>
    <a onclick="selManAddrH()" id="act2H" style="display: none;">Manual entry address</a>
  </p>
  <div id="fullAddrH" class="over">
    <div class="form-group">
      <!--<label for="street">Street</label>-->
      <input type="text" class="form-control" id="street" placeholder="Street">
    </div>
    <div class="form-group">
      <!--<label for="streetNr">Nr.</label>-->
      <input type="text" class="form-control" id="streetNr" placeholder="Nr.">
    </div>
    <div class="form-group">
      <!--<label for="zip">ZIP</label>-->
      <input type="text" class="form-control" id="zip" placeholder="ZIP">
    </div>
    <div class="form-group">
      <!--<label for="city">City</label>-->
      <input type="text" class="form-control" id="city" placeholder="City, municipality">
    </div>
    <div class="form-group">
      <!--<label for="country">Country</label>-->
      <input type="text" class="form-control" id="country" placeholder="Country">
    </div>
  </div>
  <div id="geolocatiH" class="over"
    style="font-size: 14px; color: #337ab7; border: 1px solid #0564A0; text-align: center; background-color: #fff; border-radius:5px; overflow: hidden; width: 100%; height: auto; margin: 0 auto 10px auto; padding: 5px; display: none;">
    <span class="location" id="locaat"></span>
  </div>
  <script>
    function selGeoH() {
      document.getElementById('geolocatiH').style.display = ('block');
      document.getElementById('fullAddrH').style.display = ('none');
      document.getElementById('act2H').style.display = ('block');
      document.getElementById('act1H').style.display = ('none');
    }
  </script>
  <script>
    function selManAddrH() {
      document.getElementById('geolocatiH').style.display = ('none');
      document.getElementById('fullAddrH').style.display = ('block');
      document.getElementById('act2H').style.display = ('none');
      document.getElementById('act1H').style.display = ('block');
    }
  </script>
  <div class="form-group">
    <select class="form-control" id="firstDropdown">
      <option value="">Restaurant</option>
      <option value="1">Haute Cuisine</option>
      <option value="2">Brasserie</option>
      <option value="3">Friterie</option>
      <option value="3">Chicken</option>
      <option value="3">Pasta</option>
      <option value="3">Snackbar</option>
      <option value="3">Kebab/Pitta</option>
      <option value="5">Fastfood</option>
      <option value="4">Pancake, waffles</option>
      <option value="10">Flemisch kitchen</option>
      <option value="10">Italian kitchen</option>
      <option value="10">Greek kitchen</option>
      <option value="10">Spanish kitchen</option>
      <option value="10">Portugese kitchen</option>
      <option value="10">Mexican kitchen</option>
      <option value="10">Chinese kitchen</option>
      <option value="10">Thai kitchen</option>
      <option value="10">Indian kitchen</option>
      <option value="10">Eastern kitchen</option>
      <option value="10">Swiss kitchen</option>
      <option value="10">Slavian kitchen</option>
      <option value="9">Other</option>
    </select>
  </div>
  <p class="text-center">
    <a class="btn btn-sm btn-default" onclick="insDateH2()" id="act3H2">Insert date (event)</a>
    <a onclick="delDateH2()" id="act4H2" style="display: none;">Cancel date (event)</a>
  </p>
  <div id="dateMH2" class="over" style="display: none">
    <div class="form-group">
      <div class="row text-center">
        <div class="col-md-offset-2 col-md-8">
          <div class="form-group">
            <div class="input-group date" id="datetimepicker1">
              <input type="text" class="form-control">
              <span class="input-group-addon">
                <!--<span class="glyphicon glyphicon-calendar"></span>-->
                <i class="fa-solid fa-table-cells" aria-hidden="true"></i>
              </span>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
  <script>
    function insDateH2() {
      document.getElementById('dateMH2').style.display = ('block');
      document.getElementById('act4H2').style.display = ('inline-block');
      document.getElementById('act3H2').style.display = ('none');
    }
  </script>
  <script>
    function delDateH2() {
      document.getElementById('dateMH2').style.display = ('none');
      document.getElementById('act4H2').style.display = ('none');
      document.getElementById('act3H2').style.display = ('inline-block');
    }
  </script>
  <div class="over text-center mb-10">
    <a onclick="addH1()" class="btn btn-success" data-dismiss="modal">Add</a>
    <a onclick="delH1()" type="button" class="btn btn-link" data-dismiss="modal">Cancel</a>
  </div>
  <script>
    function addH1() {
      document.getElementById('atu9H1').style.display = ('inline-block');
      document.getElementById('atu8H1').style.display = ('none');
    }
  </script>
  <script>
    function delH1() {
      document.getElementById('atu8H1').style.display = ('inline-block');
      document.getElementById('atu9H1').style.display = ('none');
    }
  </script>
</form>

POST

<form method="POST">
  <button type="submit" class="btn btn-primary">Do not show again</button>
  <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</form>

Text Content

× Home Register Login


QR-L

 
You are here:
 

Share 
Weather 
Save 
 1. 

 
 
 

6 Options (only 1 € / month)

 
Events
My QR-L
SOS
My Car
Travel
My Hotel
 

 
 * Terms of Use
 * Privacy Policy
 * Pricing
 * Contact

© Vnwst 2024. All Rights Reserved

 * 
   Home
 * 
   Locations
 * 
   Clicks
 * 
   Events
 * 
   More

AALST

 * Info
 * Links

Views: 2.226.124 Favorites: 1.907.208 Surface: 78,12 km² Population: 90.214
(2013) Region: Flanders Province: Oost-Vlaanderen Languages: Dutch (nl) Tel: 053
Distance: 60,1 km 

 * Aalst.be
 * Visit Aalst
 * Wikipedia (nl)
 * Tripadvisor
 * Reisroutes.be (nl)
 * Toerisme Oost-Vlaanderen (nl)
 * Aalst Carnaval (nl)
 * Eendracht Aalst (nl)

Close

19 MUNICIPALITIES

BRUSSELS (BE)

 *  * : Town hall
    * : Police station
    * : Internet
   
   --------------------------------------------------------------------------------

 *  * Brussel Capital Region
      19 Municipalities
    * 

 *  * Brussels/Brussel/Bruxelles
      1000
    * 
    * 
    * 

 *  * Anderlercht
      1070
    * 
    * 
    * 

 *  * Oudergem/Auderghem
      1160
    * 
    * 
    * 

 *  * Sint-Agatha-Berchem /
      Berchem-Sainte-Agathe
      1082
    * 
    * 
    * 

 *  * Etterbeek
      1040
    * 
    * 
    * 

 *  * Evere
      1140
    * 
    * 
    * 

 *  * Vorst / Forest
      1190
    * 
    * 
    * 

 *  * Ganshoren
      1083
    * 
    * 
    * 

 *  * Elsene / Ixelles
      1050
    * 
    * 
    * 

 *  * Jette
      1090
    * 
    * 
    * 

 *  * Koekelberg
      1081
    * 
    * 
    * 

 *  * Sint-Jans-Molenbeek /
      Molenbeek-Saint-Jean
      1080
    * 
    * 
    * 

 *  * Sint-Gillis / Saint-Gilles
      1060
    * 
    * 
    * 

 *  * Sint-Joost-Ten-Node
      Saint-Josse-ten-Noode
      1210
    * 
    * 
    * 

 *  * Schaarbeek / Schaerbeek
      1030
    * 
    * 
    * 

 *  * Ukkel / Uccle
      1180
    * 
    * 
    * 

 *  * Watermaal-Bosvoorde
      Watermael Boitforts
      1170
    * 
    * 
    * 

 *  * Sint-Lambrechts-Woluwe
      Woluwe-Saint-Lambert
      1200
    * 
    * 
    * 

 *  * Sint-Pieters-Woluwe
      Woluwe-Saint-Pierre
      1150
    * 
    * 
    * 

HOW IT WORKS

 * Create a citytrip

 * 1. Select a country
   2. Select a city
   3. Each listing has the icon in the upper right corner. By clicking on this
      icon, the listing will be added to your citytrip.
   4. Cick on "My CityTrip" to see the listings that you selected.
   5. Once visited a location you can delete it from your Citytrip. However, the
      entire citytrip will be saved, so that you can do the trip again another
      time or share it with friends.

 * Find you car

 * 1. Click on the button "My Car".
   2. The location where you clicked on this button will be saved.
   3. Click again on that button and the route to your car will be shown.
   4. Once your car found, you can delete the location.

 * SOS24HRS

 * 1. Cick on the button "SOS24HRS" in the bottom menu.
   2. You will find all necessary information and contact links to find help, 24
      hours a day, wherever you are in Europe.

 * Update your location

 * * By clicking on the button your location will be updated. All shown
     distances will be calculated in function of that new location.

 * Where are you?

 * * By clicking on the icon in the upper right corner, you will get a popup
     with the address of your location.

 * Start

 * * A citytrip starts with traveling to that city. By car, by train or by bus.
     Here you find the tools and links to do so.

 * Tourism

 * * All places in a city, worth being visited.

 * Culture

 * * All theatres, cinemas, concert halls and museums, with a link to their
     calendar.

 * Events

 * * Links to websites where you can get an overview of all events in the city
     that you are visiting.

 * Events

 * * All nightclubs, dance cafes and jazz clubs with their calendar.

 * Eat/drink

 * * All restaurants, brasseries and cafes in the city. If available, the menu
     of a restaurant is added.

 * Hotels

 * * All hotels, B&B and hostels in the city.

 WEATHER



 EVENTS

Coming soon

SHARE YOUR LOCATION


Whatsapp
Messenger
Viber

Close

 SAVE LOCATION

You are here


 
Category My Car My Hotel TOURISM CULTURE SPORTS SHOPPING EAT DRINK EVENTS
NIGHTLIFE

Save Cancel

 SAVE THIS LOCATION

You are here:






Category Tourism Culture Sleep Shopping Eat Drink Nightlife Sports
Category
Add Cancel

 ADD LOCATION

 *   My location
 *   Google Maps link
 *   Address

 ADD LOCATION

Category Tourism Culture Sleep Shopping Eat Drink Nightlife Sports
Category
Add Cancel

  CAR LOCATION

Groenhuys, 102, Mechelsestraat, Ridderbuurt, Leuven, Vlaams-Brabant, Vlaanderen,
3000, BelgiëSince: 2024-11-15 14:50:57

 Delete Get directions  

  HOTEL LOCATION

Café Sport, 13, Martelarenplein, Sint-Maartensdal, Leuven, Vlaams-Brabant,
Vlaanderen, 3000, BelgiëSince: 2024-11-06 20:54:58

 Delete Get directions  

 ADD ADDRESS

Select my geolocation Manual entry address



Add Cancel

 ADD TOURISM LOCATION

Select my geolocation Manual entry address



Category Tourist attraction Museum Monument Statue Place, square Architecture
Park Bridge View Other

Insert date visit Cancel date visit


Add Cancel

 ADD CULTURE LOCATION

Select my geolocation Manual entry address



Category Concert Festival Theater Conference, lecture Politics Culinary Service
Club Fashion Art Exhibition Auction Children Market Evening Market Flea Market
Bio Market Christmas Market Other

Insert date (event) Cancel date (event)


Add Cancel

 ADD EAT LOCATION

Select my geolocation Manual entry address



Restaurant Haute Cuisine Brasserie Friterie Chicken Pasta Snackbar Kebab/Pitta
Fastfood Pancake, waffles Flemisch kitchen Italian kitchen Greek kitchen Spanish
kitchen Portugese kitchen Mexican kitchen Chinese kitchen Thai kitchen Indian
kitchen Eastern kitchen Swiss kitchen Slavian kitchen Other

Insert date (event) Cancel date (event)


Add Cancel

 ADD DRINK LOCATION

Select my geolocation Manual entry address



Restaurant Haute Cuisine Brasserie Friterie Chicken Pasta Snackbar Kebab/Pitta
Fastfood Pancake, waffles Flemisch kitchen Italian kitchen Greek kitchen Spanish
kitchen Portugese kitchen Mexican kitchen Chinese kitchen Thai kitchen Indian
kitchen Eastern kitchen Swiss kitchen Slavian kitchen Other

Insert date (event) Cancel date (event)


Add Cancel

 ADD NIGHTLIFE LOCATION

Select my geolocation Manual entry address



Restaurant Haute Cuisine Brasserie Friterie Chicken Pasta Snackbar Kebab/Pitta
Fastfood Pancake, waffles Flemisch kitchen Italian kitchen Greek kitchen Spanish
kitchen Portugese kitchen Mexican kitchen Chinese kitchen Thai kitchen Indian
kitchen Eastern kitchen Swiss kitchen Slavian kitchen Other

Insert date (event) Cancel date (event)


Add Cancel

 ADD SPORTS LOCATION

Select my geolocation Manual entry address



Restaurant Haute Cuisine Brasserie Friterie Chicken Pasta Snackbar Kebab/Pitta
Fastfood Pancake, waffles Flemisch kitchen Italian kitchen Greek kitchen Spanish
kitchen Portugese kitchen Mexican kitchen Chinese kitchen Thai kitchen Indian
kitchen Eastern kitchen Swiss kitchen Slavian kitchen Other

Insert date (event) Cancel date (event)


Add Cancel

 METRO / TRAM


Metro / Tram
Routeplanner
 

The nearest metro station / tram stop will be selected by the routeplanner.

 BUS

 * Routeplanners
 * Flixbus Stops


Brussels Bus
Routeplanner

Flixbus
Routeplanner

Flanders Bus
Routeplanner

Wallonia Bus
Routeplanner
 

The nearest bus stop will be selected by the routeplanner.

North Station
direction 
South Station/Midi
direction 
Heysel
direction 

 TAXI


Taxi Companies
Map

Über
App

Bolt
App

Collecto
App

 SHARE

 * Car
 * Bike
 * Step


Cambio

Poppy

Villo

Blue-bike

Lime

Pro Velo

Swapfiets
 

Bolt

Dott

Lime

Pony

 TRAIN


Train Belgium
Routeplanner

Train Europe
Routeplanner
Railway station nearby
Brussels
North Station
350 m 
Brussels
Central Station
2.3 km 
Brussels
South Station/Midi
3.7 km 
Brussels
Luxemburg Station
3.6 km 
Antwerpen Centraal
Anvers/Antwerp
43.2 km 
Gent Sint-Pieters
Gand
56.1 km 
Brugge
Bruges
95.1 km 
Oostende
Ostende
113.0 km 
Blankenberge
---
109.0 km 
Mechelen
Malines
29.3 km 
Leuven
Louvain
32.1 km 
Hasselt
---
82.8 km 
Kortrijk
Courtrai
92.8 km 
Liège
Luik/Lüttich
97.3 km 
Namur
Namen
68.3 km 
Charleroi
---
72.2 km 
Mons
Bergen
79.0 km 
Arlon
Aarlen
190.0 km 

BREAKDOWN ASSISTANCE 24/7

 *   
   Touring Assistance
   24/7
 * 
   VAB Assistance
   24/7

Breakdown Assistance Call

078 178 178

Brussels Internet

touring.be

Breakdown Assistance Call

078 222 222

Brussels Internet

vab.be

CAR DEALERSHIPS

Abarth
Lamborghini
Alfa Romeo
Lancia
Alpine
Land Rover
Aston Martin
Lexus
<
Audi
Lotus
Bentley
Maserati
BMW
Mazda
Bugatti
McLaren
BYD
Mercedes-Benz
Chevrolet
MINI
Chrysler
Mitsubishi
Citroën
Morgan
Corvette
Nissan
Cupra
Opel
Dacia
Peugeot
Dodge
Polestar
DS
Porsche
Ferrari
Renault
Fiat
Rolls Royce
Ford
Seat
Honda
Skoda
Hyundai
SMART
Infiniti
Subaru
Isuzu
Suzuki
Iveco
Tesla
Jaguar
Toyota
Jeep
Volkswagen
Kia
Volvo

MOTOR DEALERSHIPS

Aixam
BMW
Ducati
Harley-Davidson
Honda
Kawasaki
KTM
Moto Guzzi
MV Agusta
Royal Enfield
Suzuki
Triumph
Vespa
Yamaha

BIKE DEALERSHIPS

BRUSSELS (BE)

ABUS
Cannondale
Cervélo
Colnago
Honda
Kawasaki
KTM
Moto Guzzi
MV Agusta
Royal Enfield
Suzuki
Triumph
Vespa
Yamaha

LOGIN / REGISTER

 * QRANDL
 * 2 clicks locator
 * Find your way or help worldwide in 2 clicks / 2 seconds
   
 * No writing required
 * 1 € / month -- NO Ads

Do not show again Close

 TOURISM

Tourist attraction Museum Monument Statue Place Park Public toilet Street Art

 SHOPPING

Shopping center Supermarkets Grocer Food market Bio shop Beverage Confection
Clothing store Fashion men Fashion women Fashion children Baby clothes Lingerie
Cosmetics Health & beauty Opticians Tabac Press Bookshop Gift shop Electronics
Computershop Mobile phone shop Office supplies Kitchen shop Bathroom shop Tile
shop Paint store Household appliances Bed shop Toys & games Sports & outdoor
Garden center Hardware store DIY store Auction house Art gallery Antique store
Brocante Furniture Garden furniture Bakery Pastries Butchery Flowers Gifts
Exchange office  

 EAT

Restaurant Haute cuisine Brasserie Friterie Chicken Pizza Pasta Kebab / pitta
Snackbar Fastfood Pancake Waffles Vegetarian

KITCHEN

Belgian French Italian Spanish Swiss Greek Portugese Mexican Chinese Thai Indian
Vietnamese Slavian Armenian Bulgarian Romanian Turkish Moroccan Halal  

 DRINK

Cafe Brasserie Tavern Dance cafe Tearoom Coffee Bar Bar American bar Irish pub
Wine bar Live music Jazz club Blues cafe Rock cafe Salsa bar Adult bar

 NIGHTLIFE

Dancing Nightclub Dance cafe Bar Jazz club Brasilian bar Salsa bar Dance school
Adult bar Erotic massage Thai massage Dinner theater Gay bar  

 SLEEP

Hotel Hotel 4*/5* B & B Hostel Rooms Love hotel Camping  

 PUBLIC SERVICES

City office Town hall Courthouse Government building Local police Embassy Tax
authorities

 EDUCATION

Childcare Kindergarten Primary school Secondary school College Highschool
University Language institute Adult education  

 SPORTS

Football Baketball Volleyball Handball Tennis Padel / squash Golf Hockey Ice
hockey Bowling Fitness Sauna Swimming pool Gymnastics Dance club Karting
Autocircuit Autoclub Diving school Aviation club Bridge club Martial arts Boxing
club  

 RELIGION

Chapel Church Basilica Abbey Monastery Mosque