涂煌豪
2022-05-06 98e508d2852896dbde98edcc9ed6d87645a6a230
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<aura:component access="global">
 
    <ltng:require styles="{!$Resource.leaflet1 + '/leaflet.css'}" 
                  scripts="{!$Resource.leaflet1 + '/leaflet.js'}"
                   afterScriptsLoaded="{!c.jsLoaded}" />
 
    <aura:attribute name="location" type="SObject"/>
    <aura:attribute name="jsLoaded" type="boolean" default="false"/>
    
    <aura:method name="setLocation" action="{!c.setLocation}">
        <aura:attribute name="lat" type="String" /> 
        <aura:attribute name="long" type="String" /> 
    </aura:method>
 
    <div aura:id="map"></div>
    
</aura:component>