Я использую карты Google для рельсов, и у меня все настроено правильно, но я не могу понять, как установить масштаб по умолчанию. Я попытался установить его в gmaps4rails.base.js.coffee здесь:
@default_map_options =
id: 'map'
draggable: true
detect_location: false # should the browser attempt to use geolocation detection features of HTML5?
center_on_user: false # centers map on the location detected through the browser
center_latitude: 0
center_longitude: 0
zoom: 7
maxZoom: null
minZoom: null
auto_adjust : true # adjust the map to the markers if set to true
auto_zoom: true # zoom given by auto-adjust
bounds: [] # adjust map to these limits. Should be [{"lat": , "lng": }]
raw: {} # raw json to pass additional options
но я не думаю, что это сработало должным образом. Есть ли способ добавить номер увеличения при создании карты:
<%= gmaps(:markers => {:data => @json,
:options => {:raw => '{ animation: google.maps.Animation }' } },
:map_options => { :raw => '{ disableDefaultUI: false,
scrollwheel: true }' }) %>
Ничего, что я делаю, кажется, ничего не делает, оно всегда полностью увеличено. Спасибо!