var MainMapController = Backbone.Controller.extend({
    initialize: function(args){
        // вывод карты
        new PlaceMapView({
            collection: args.place_collection,
            settings: args.settings
        });
        
        return this;
    }
});
