Skip to content

Instantly share code, notes, and snippets.

@sfmishra
Last active March 23, 2019 20:17
Show Gist options
  • Save sfmishra/eccc8ab8eb3bca61fa1c5f506ebbc143 to your computer and use it in GitHub Desktop.
Save sfmishra/eccc8ab8eb3bca61fa1c5f506ebbc143 to your computer and use it in GitHub Desktop.
<aura:component controller="TowerMapController" implements="force:appHostable,flexipage:availableForAllPageTypes">>
<aura:attribute name="mapMarkers" type="object" access="private"/>
<aura:attribute name="markersTitle" type="object" access="private"/>
<aura:handler name="init" value="{!this}" action="{!c.init}"/>
<aura:if isTrue="{!!empty(v.mapMarkers)}">
<lightning:map mapMarkers="{!v.mapMarkers}" zoomLevel="10" markersTitle="{!v.markersTitle}"/>
</aura:if>
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment