Sha256: b407231c82f88a084525096508fee073b3ab3157ea0c45b2f34bc6d83571368f

Contents?: true

Size: 1.13 KB

Versions: 10

Compression:

Stored size: 1.13 KB

Contents

<% #thanks to enable_css, user can avoid this css to be loaded
   if enable_css == true %>
	<% content_for :head do %>
	<%= stylesheet_link_tag 'gmaps4rails' %>
	<% end %>
<% end %>

<% content_for :scripts do %>
<% if enable_js == true %>
	<script src="http://www.google.com/jsapi"></script>
	<%=javascript_include_tag 'gmaps4rails' %>
	<% unless options["markers"].nil? or (!options["markers"]["options"].nil? and options["markers"]["options"]["do_clustering"] == false) %>
		<script type="text/javascript" src='http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclusterer/1.0/src/markerclusterer_compiled.js'></script>
	<% end %>
<% end  %>
<script type="text/javascript" charset="utf-8">

window.onload = function() {
<% #true is passed here to trigger map initialization %>
<%=raw options.to_gmaps4rails(true) %>
}
</script>
<% end %>

<div id="<%= options["map_options"].nil? || options['map_options']['container_id'].nil? ? "map_container" : options['map_options']['container_id'] %>"> 
  <div id="<%= options["map_options"].nil? || options['map_options']['id'].nil? ? "gmaps4rails_map" : options['map_options']['id'] %>"></div>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
gmaps4rails-0.8.0 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.9 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.8 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.7 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.6 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.5 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.4 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.3 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.2 app/views/gmaps4rails/_gmaps4rails.html.erb
gmaps4rails-0.7.1 app/views/gmaps4rails/_gmaps4rails.html.erb