Skip to content

Commit

Permalink
default zoom to 10 on /map/ (#7869)
Browse files Browse the repository at this point in the history
  • Loading branch information
jywarren authored May 5, 2020
1 parent 3b37eb5 commit b81beff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/map/map.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

var lat = parseFloat(params.lat) || 10;
var lon = parseFloat(params.lon) || 1;
var zoom = parseFloat(params.zoom) || 6;
var zoom = parseFloat(params.zoom) || 10;

const bounds = new L.LatLngBounds(
new L.LatLng(84.67351257, -172.96875),
Expand Down

0 comments on commit b81beff

Please sign in to comment.