15 lines
385 B
Text
15 lines
385 B
Text
<% #
|
|
# @file
|
|
# Shows a list of featured maps
|
|
# GET /explore/featured(.:format)
|
|
# %>
|
|
|
|
<script>
|
|
Metamaps.Maps.Featured = <%= @maps.to_json.html_safe %>;
|
|
Metamaps.currentPage = "featured";
|
|
<% content_for :title, "Explore Featured Maps | Metamaps" %>
|
|
|
|
Metamaps.currentSection = "explore";
|
|
Metamaps.GlobalUI.Search.open();
|
|
Metamaps.GlobalUI.Search.lock();
|
|
</script>
|