15 lines
399 B
Text
15 lines
399 B
Text
<% #
|
|
# @file
|
|
# Shows a list of current user's maps
|
|
# GET /explore/mine(.:format)
|
|
# %>
|
|
|
|
<script>
|
|
Metamaps.Maps.Shared = <%= @maps.to_json.html_safe %>;
|
|
Metamaps.currentPage = "shared";
|
|
<% content_for :title, "Explore Shared Maps | Metamaps" %>
|
|
<% content_for :mobile_title, "Shared With Me" %>
|
|
|
|
Metamaps.currentSection = "explore";
|
|
Metamaps.GlobalUI.Search.focus();
|
|
</script>
|