]> git.openstreetmap.org Git - rails.git/commitdiff
Setup the layers before adding any marker so that the marker layer
authorTom Hughes <tom@compton.nu>
Thu, 30 Aug 2007 10:42:32 +0000 (10:42 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 30 Aug 2007 10:42:32 +0000 (10:42 +0000)
will get turned on if it was off in the layers string.

app/views/site/index.rhtml

index 41b2b86f2f388a42b326ddd4ebdfbc13fc68b00c..bbd1a8a775887af67802e247c489a814ccf9d8eb 100644 (file)
     map.setCenter(centre, zoom);
     <% end %>
 
-    <% if marker %>
-    marker = addMarkerToMap(lonLatToMercator(new OpenLayers.LonLat(<%= mlon %>, <%= mlat %>)));
-    <% end %>
-
     <% if layers %>
     setMapLayers("<%= layers %>");
     <% end %>
 
+    <% if marker %>
+    marker = addMarkerToMap(lonLatToMercator(new OpenLayers.LonLat(<%= mlon %>, <%= mlat %>)));
+    <% end %>
+
     map.events.register("moveend", map, updateLocation);
     updateLocation();