2015-04-01 107 views

回答

1

我能解決我的問題有以下...

var select = new ol.interaction.Select({ 
      style: vm.selectedFeatureStyle, 
      condition: function (event) { 
       if (event.type === 'singleclick') { 
        return vm.map.forEachFeatureAtPixel(event.pixel, function() { 
         return true; 
        }); 
       } 
       return false; 
      } 
     });