Guest User

Untitled

a guest
Dec 14th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <!--
  2. - Lightning Markup: HtmlMapTest
  3. -
  4. - Filename: HtmlMapTest.cmp
  5. -
  6. - Author: Peter Friberg, Fluido Sweden AB
  7. -
  8. - Description:
  9. - XXXXX
  10. -
  11. - Change Log:
  12. - 2017-12-11 Peter Friberg Initial Development.
  13. -->
  14.  
  15. <aura:component description="HtmlMapTest" access="global"
  16. implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome">
  17.  
  18. <aura:attribute name="image" access="global" type="String" />
  19. <aura:attribute name="alt" access="global" type="String" />
  20. <aura:attribute name="usemap" access="global" type="String" required="true" default="themap" />
  21. <aura:attribute name="width" access="global" type="Integer" />
  22. <aura:attribute name="height" access="global" type="Integer" />
  23. <aura:attribute name="navigate" access="global" type="Boolean" default="false" />
  24. <aura:attribute name="areas" access="global" type="Object[]" />
  25.  
  26. <aura:registerEvent name="mapClick" type="c:mapClickEvent"/>
  27.  
  28. <div class="slds">
  29. <img src="{!v.image}" alt="{!v.alt}"
  30. width="{!v.width}" height="{!v.height}" usemap="{!'#' + v.usemap}" />
  31.  
  32. <map name="{!v.usemap}">
  33. <aura:iteration var="theArea" items="{!v.areas}">
  34. <area shape="{!theArea.shape}" coords="{!theArea.coords}"
  35. href="{!theArea.href}" alt="{!theArea.alt}"
  36. title="{!theArea.alt}" onclick="{!c.onClick}" />
  37. </aura:iteration>
  38. </map>
  39. </div>
  40.  
  41. </aura:component>
Add Comment
Please, Sign In to add comment