Last active
March 23, 2019 20:17
-
-
Save sfmishra/eccc8ab8eb3bca61fa1c5f506ebbc143 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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