2018-03-25 17:20:54 +00:00
|
|
|
<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
|
2018-03-25 17:30:42 +00:00
|
|
|
<!-- partial start: nonprofits/_overview_media -->
|
|
|
|
<div class='overview-media'>
|
|
|
|
<% if @nonprofit.main_image.file %>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div style='overflow: hidden; height: initial;'>
|
|
|
|
<%= image_tag @nonprofit.main_image_url(:nonprofit_carousel).to_s %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% elsif Format::Address.full_address(@nonprofit.address, @nonprofit.city, @nonprofit.state_code) %>
|
2018-06-06 17:44:52 +00:00
|
|
|
<script>
|
|
|
|
var script = document.createElement('script')
|
|
|
|
script.type = 'text/javascript'
|
|
|
|
script.id = 'google_maps'
|
|
|
|
let key = ""
|
|
|
|
if (app.map_provider_options && app.map_provider_options.key) {
|
2018-07-17 22:05:00 +00:00
|
|
|
key = `key=${app.map_provider_options.key}&`
|
2018-06-06 17:44:52 +00:00
|
|
|
}
|
2018-07-17 22:05:00 +00:00
|
|
|
script.src = `https://maps.googleapis.com/maps/api/js?${key}v=3.exp&libraries=places`
|
2018-06-06 17:44:52 +00:00
|
|
|
document.body.appendChild(script)
|
|
|
|
</script>
|
2018-03-25 17:30:42 +00:00
|
|
|
<% npo_full_address = Format::Address.full_address(@nonprofit.address, @nonprofit.city, @nonprofit.state_code, @nonprofit.zip_code) %>
|
|
|
|
|
|
|
|
<div class='overview-map' id='js-map' data-address='<%= npo_full_address %>'>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<!-- partial end: nonprofits/_overview_media -->
|