Improved www.ttss.krakow.pl
Jacek Kowalski
2019-07-06 8cd75bdd714622bbe004aca0ae82bf2169a62434
map.js
@@ -94,7 +94,7 @@
   
   this._content = document.createElement('div');
   this._element.appendChild(this._content);
};
}
Panel.prototype = {
   _element: null,
   _hide: null,
@@ -179,6 +179,11 @@
      var query = this.input.value.toUpperCase();
      if(query === this.query) return;
      this.query = query;
      if(query === '') {
         deleteChildren(this.results);
         return;
      }
      
      var features = [];
      stops_type.forEach(function(stop_type) {
@@ -344,7 +349,7 @@
            if(vehicle_feature) {
               vehicles_source[prefix].removeFeature(vehicle_feature);
               if(feature_clicked && feature_clicked.getId() === vehicle_feature.getId()) {
                  featureClicked();
                  panel.close();
               }
            }
            continue;
@@ -586,6 +591,8 @@
   }
   // Vehicle
   else if(ttss_types.includes(type)) {
      styleVehicle(feature, true);
      var span = displayVehicle(feature.get('vehicle_type'));
      
      additional = document.createElement('p');
@@ -601,8 +608,6 @@
      
      vehicleTable(feature, tbody);
      vehiclePath(feature);
      styleVehicle(feature, true);
   }
   // Stop or stop point
   else if(['s', 'p'].includes(type)) {
@@ -704,6 +709,11 @@
function listFeatures(features) {
   var div = document.createElement('div');
   
   if(features.length === 0) {
      addParaWithText(div, lang.no_results);
      return div;
   }
   addParaWithText(div, lang.select_feature);
   
   var feature, p, a, full_type, typeName;
@@ -747,7 +757,6 @@
   var feature = features[0];
   
   if(features.length > 1) {
      featureClicked();
      panel.show(listFeatures(features));
      return;
   }