diff --git a/addon/components/leaflet-map.js b/addon/components/leaflet-map.js index cffbefdd..5ce4564a 100644 --- a/addon/components/leaflet-map.js +++ b/addon/components/leaflet-map.js @@ -21,6 +21,7 @@ export default BaseLayer.extend(ParentMixin, { 'keyboard', 'keyboardPanOffset', 'keyboardZoomOffset', // Panning Inertia Options 'inertia', 'inertiaDeceleration', 'inertiaMaxSpeed', 'inertiaThreshold', + 'easeLinearity', 'worldCopyJump', 'maxBoundsViscosity', // Control options 'zoomControl', 'attributionControl', // Animation options @@ -39,7 +40,9 @@ export default BaseLayer.extend(ParentMixin, { ], leafletProperties: [ - 'zoom:setZoom:zoomPanOptions', 'center:panTo:zoomPanOptions', 'maxBounds:setMaxBounds', 'bounds:fitBounds:fitBoundsOptions' + 'zoom:setZoom:zoomPanOptions', 'minZoom:setMinZoom:zoomPanOptions', 'maxZoom:setMaxZoom:zoomPanOptions', + 'center:panTo:zoomPanOptions', + 'bounds:fitBounds:fitBoundsOptions', 'maxBounds:setMaxBounds', ], center: toLatLng(),