Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var selection = new ol.interaction.Select({
  2. condition: ol.events.condition.click,
  3. style: selectedStyle
  4. });
  5. map.addInteraction(selection);
  6.  
  7. var originalStyle = function(feature, resolution){
  8. ...
  9. feature.set('originalColor', 'red');
  10. ...
  11. }
  12.  
  13. ...
  14. feature.get('originalColor');
  15. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement