Yesterday, I was at the World Tour for Lightning. I learned so much! We reviewed how to incorporate Maps as a Lightning Component using the open source leaflet. If your system uses this, will there be any concern for data security?
The clients for my organization are confidential, would my org be sending address information to leaflet?
Thank you,
Tiffany
1 Kommentar
Tiffany per Christophe: No, the map doesn't send data to leaflet or any other third party service. We store lat/long coordinates in our custom Property object and we provide these coordinates to the map, so it has all it needs to display the marker. In fact our security model prevents Lightning Components to communicate directly (post or receive data) with a third party service (without proxying through Apex). The only reason you'd want to go to a third party service would be to geocode addresses (get lat/long based on an address) in the first place which we don't do in this use case.