Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. var tile_photo = new ol.layer.Tile({
  2. source: new ol.source.TileWMS({
  3. attributions: [
  4. new ol.Attribution({
  5. html: '<a href="http://link">TEXT</a>',
  6. collapsed:true,
  7. tipLabel:'My attribution'
  8. })
  9. ],
  10. ...............
  11.  
  12. })
  13. });
  14.  
  15. source: new ol.source.TileWMS({
  16. attributions: [
  17. new ol.Attribution({
  18. html: '<a href="http://link">TEXT</a>',
  19. options: {
  20. collapsible: true,
  21. label: 'A',
  22. collapsed: true,
  23. tipLabel: 'yooo'
  24. }
  25. })
  26. ],
  27. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement