<%# # @file # Partial view, renders a form that creates a new map. #%>
<%= form_for Map.new, url: maps_url, remote: true, html: { class: "new_map", id: "new_map" } do |form|%>

Create A New Map

<%= form.text_field :name %> <%= form.text_area :desc, class: "description", :rows => 5 %> <%= form.select(:permission, options_for_select(['commons', 'public', 'private'])) %>

Topics and synapses you create newly on this map will be set by default to the permissions of your map.

<%= form.submit "Save", class: "add" %>
<% end %>