9 plazas

Reservation
1
Pick up
--
--
Drop off
--
--
2
Type
--
Addons
--
3
Your information
--
Payment information
--

Los mejores precios
en Canarias

Cambios o cancelación Gratuita

¡Y mucho más!

Pick Up

Place to pick up the Car*

Pick-up Date/Time*

Return

Place to drop the Car*

Drop Date/Time*

(function($) { "use strict"; $(document).ready(function(){ $('input[name="return_same"]').on('change', function(){ if($(this).prop('checked')) { $('.stm_same_return').slideUp(); } else { $('.stm_same_return').slideDown(); } }); let form = $('.stm_rent_car_form form'), select = $('.stm_pickup_location select'); select.on('select2:open', function() { $('body').addClass('stm_background_overlay'); $('.select2-container').css('width', $('.select2-dropdown').outerWidth()); }); select.on('select2:close', function(){ $('body').removeClass('stm_background_overlay'); }); $('.stm_date_time_input input').on('change', function(){ if($(this).val() === '') { $(this).removeClass('active'); } else { $(this).addClass('active'); } }); $('.stm-date-timepicker-start').on('change.datetimepicker', function(e) { clearWooCommerceCart(); }); $('.stm-date-timepicker-end').on('change.datetimepicker', function(e) { clearWooCommerceCart(); }); function clearWooCommerceCart() { $.ajax({ url: woocommerce_params.ajax_url, type: 'POST', data: { action: 'clear_woo_cart' }, }); } var locations = [["
Aeropuerto
Aeropuerto de Gran Canaria. Autopista GC-1, s\/n
08:00 \u2013 20:00","28.062250","-15.420020",0,"Aeropuerto",1947],["
Las Palmas
Alfred Nobel n\u00ba2, nave 3 35013
Phone: +34 630 106 460
08:00 \u2013 20:00","27.7581799","-27.7581799",1,"Las Palmas",1744],["
Arguinegu\u00edn
Alcalde Paco Gonz\u00e1lez, 2
Phone: +34 630 106 460
08:00 \u2013 20:00","27.7581799","-15.6813995",2,"Arguinegu\u00edn",472]]; var contents = []; var content = ''; var i = 0; for (i = 0; i < locations.length; i++) { content = '
    '; content += '
  • ' + locations[i][0] + '
  • '; content += '
'; contents.push(content); } $(document).on('mouseover', '.stm_rent_location .select2-results__options li', function(){ var currentLi = ($(this).index()) - 1; $('.stm_rent_location .stm_locations_description').remove(); $('.stm_rent_location').append(contents[currentLi]); }); var stmStart = $('.stm-date-timepicker-start') var stmEnd = $('.stm-date-timepicker-end') var stmStartVal = stmStart.val(); var stmEndVal = stmEnd.val(); var expireCookieTime = parseInt( '' ); var expiresTime = new Date(); if ( isNaN( expireCookieTime ) ) { expireCookieTime = 24; } expiresTime.setTime(expiresTime.getTime() + (expireCookieTime * 60 * 60 * 1000)); /*Timepicker*/ var stmToday = new Date(); var stmTomorrow = new Date(+new Date() + 86400000); var startDate = stmStartVal ? stmStartVal : false; var endDate = stmEndVal ? stmEndVal : false; var dateTimeFormat = 'F j, Y g:i a'; var dateTimeFormatHide = 'MM DD, YYYY HH:mm'; stmStart.datetimepicker({ format: dateTimeFormat, dayOfWeekStart: 1, defaultDate: stmToday, defaultSelect: true, closeOnDateSelect: false, timeHeightInTimePicker: 40, validateOnBlur: false, allowTimes: ["9:00","10:00","11:00","12:00","13:00"], fixed: false, lang: currentLocale ? currentLocale : 'nb', onShow: function( ct ) { $('body').addClass('stm_background_overlay stm-lock'); var stmEndDate = stmEnd.val() ? moment(stmEnd.val()) : false; if(stmEndDate) { stmEndDate = stmEndDate.toDate(); } this.setOptions({ minDate: new Date(), }); $(".xdsoft_time_variant").css('margin-top', '-600px'); }, onSelectDate: function (ct, $i) { $i.datetimepicker('close'); $('.xdsoft_time').removeClass('xdsoft_current'); //reset end date stmEnd.val(''); stmEnd.removeAttr( 'data-dt-hide' ); }, onClose: function (ct, $i) { startDate = ct; if (ct < new Date()) { $i.datetimepicker('reset'); } if (startDate && endDate) { checkDate(moment(startDate).format(dateTimeFormatHide), moment(endDate).format(dateTimeFormatHide)); } $('.stm-date-timepicker-end').trigger('blur'); }, onChangeDateTime: function (ct, $i) { $i.attr('data-dt-hide', moment(ct).format(dateTimeFormatHide)); }, onGenerate: function () { if(!stmStart.val()) { $('.xdsoft_time').removeClass('xdsoft_current'); } } }); stmEnd.datetimepicker({ format:dateTimeFormat, dayOfWeekStart: 1, defaultDate: stmTomorrow, defaultSelect: true, closeOnDateSelect: false, timeHeightInTimePicker: 40, validateOnBlur: false, allowTimes: ["9:00","10:00","11:00","12:00","13:00"], fixed: false, lang: currentLocale ? currentLocale : 'nb', onShow: function (ct, $i) { $('body').addClass('stm_background_overlay stm-lock'); var stmStartDate = startDate ? moment(startDate).add(1, 'day') : false; if (stmStartDate) { stmStartDate = stmStartDate.toDate(); } else { stmStartDate = new Date(); } this.setOptions({ minDate: stmStartDate, defaultDate: stmStartDate, }) }, onSelectDate: function (ct, $i) { $('.xdsoft_time').removeClass('xdsoft_current'); $i.datetimepicker('close'); }, onClose: function( ct, $i ) { endDate = ct; if(ct < new Date()) { $i.datetimepicker('reset'); } if(!stmStart.val() && !$i.val()) { checkDate(moment(startDate).format(dateTimeFormatHide), moment(endDate).format(dateTimeFormatHide)); } var s = moment(startDate); var e = moment(ct); if(e.diff(s) < 0) { s = s.add(1, 'day'); $i.val(''); $i.attr('data-dt-hide', ''); this.setOptions({ minDate: s.toDate(), defaultDate: s.toDate() }); } $('body').removeClass('stm_background_overlay stm-lock'); }, onChangeDateTime: function (ct, $i) { $i.attr('data-dt-hide', moment(ct).format(dateTimeFormatHide)); }, onGenerate: function (ct, $i) { if ($i.val() === '') { $('.xdsoft_time').removeClass('xdsoft_current'); } } }); let clear_button = $('form .clear-data') clear_button.each(function (index, item) { if (!$(item).hasClass('isNotHidden')) $(item).hide() }) form.find('select, input').change(function () { let form = $(this.form) form.find('.clear-data').show() }) clear_button.on('click', function (e) { e.preventDefault(); let form = $(this.form) form.attr('action', ''); jQuery.ajax({ url: ajaxurl, type: "GET", dataType: 'json', context: this, data: 'action=stm_ajax_clear_data&security=' + stm_security_nonce, success: function (data) {} }); $("select[name='pickup_location']").val('').trigger('change'); $("select[name='drop_location']").val('').trigger('change'); $.each(form.serializeArray(), function (i, field) { if(field.name === 'pickup_location' || field.name === 'drop_location') { $.cookie('stm_' + field.name + '_' + stm_site_blog_id, '', { expires: -1, path: '/' }); $.cookie('stm_car_watched', '', { expires: -1, path: '/' }); return } else { let _field = $('input[name="' + field.name + '"]') _field.val(''); _field.attr('data-dt-hide', ''); } $.cookie('stm_' + field.name + '_' + stm_site_blog_id, '', { expires: -1, path: '/' }); $.cookie('stm_car_watched', '', { expires: -1, path: '/' }); }); $(this).hide(); return false; }); /*Set cookie with order data*/ form.on('submit', function (e) { var error = false; $('.stm_pickup_location').removeClass('stm_error'); $('.stm_date_time_input input').removeClass('stm_error'); const pickupDateValue = $('input[name="pickup_date"]').val(); const returnDateValue = $('input[name="return_date"]').val(); const convertedPickupDate = moment(pickupDateValue).format('MM DD, YYYY HH:mm') const convertedReturnDate = moment(returnDateValue).format('MM DD, YYYY HH:mm') /*Save in cookies all fields*/ if($.cookie('stm_pickup_date_' + stm_site_blog_id) != null) { $.cookie('stm_pickup_date_old_' + stm_site_blog_id, $.cookie('stm_pickup_date_' + stm_site_blog_id), {expires: expiresTime, path: '/'}); $.cookie('stm_return_date_old_' + stm_site_blog_id, $.cookie('stm_return_date_' + stm_site_blog_id), {expires: expiresTime, path: '/'}); } $.each($(this).serializeArray(), function (i, field) { $.cookie('stm_' + field.name + '_' + stm_site_blog_id, encodeURIComponent(field.value), {expires: expiresTime, path: '/'}); if (field.name == 'pickup_date' || field.name == 'return_date') { if (typeof $('input[name="' + field.name + '"]').attr('data-dt-hide') == 'undefined' || $('input[name="' + field.name + '"]').attr('data-dt-hide') == '') { $('input[name="' + field.name + '"]').addClass('stm_error'); error = true; } else { $('input[name="' + field.name + '"]').removeClass('stm_error'); } $.cookie('stm_calc_' + field.name + '_' + stm_site_blog_id, (typeof $('input[name="' + field.name + '"]').attr('data-dt-hide') != 'undefined') ? $('input[name="' + field.name + '"]').attr('data-dt-hide') : '', {expires: expiresTime, path: '/'}); } }); if(!$('input[name="return_same"]').prop('checked')) { $.cookie('stm_return_same_' + stm_site_blog_id, "off", {expires: expiresTime, path: '/'}); } var stm_pickup_location = $('.stm_pickup_location select').val(); var return_same = $('input[name="return_same"]').prop('checked'); var stm_drop_location = $('.stm_drop_location select').val(); if (stm_pickup_location == '') { $('.stm_pickup_location:not(".stm_drop_location")').addClass('stm_error'); error = true; } if (!return_same && stm_drop_location == '') { $('.stm_drop_location').addClass('stm_error'); error = true; } if (error) { e.preventDefault(); } }); if ($.cookie('stm_pickup_date_' + stm_site_blog_id) === null || $.cookie('stm_pickup_date_' + stm_site_blog_id) === undefined ) { jQuery.ajax({ url: ajaxurl, type: "GET", dataType: 'json', context: this, data: 'action=stm_ajax_clear_data&security=' + stm_security_nonce, success: function (data) {} }); } $('.stm-template-car_rental .stm_rent_order_info .image.image-placeholder a').on('click', function(e){ var $stmThis = $('.stm_rent_car_form form'); $stmThis.trigger('submit'); e.preventDefault(); }); $('body').on('click touchstart', '.stm-rental-overlay', function(e) { $('.stm-date-timepicker-start').trigger('blur'); $('.stm-date-timepicker-end').trigger('blur'); $('.xdsoft_datetimepicker').hide(); $('body').removeClass('stm_background_overlay'); }); }); })(jQuery); function checkDate ($start, $end) { var locationId = jQuery('select[name="pickup_location"]').select2("val"); var stm_timeout_rental; if(locationId != '') { jQuery.ajax({ url: ajaxurl, type: "GET", dataType: 'json', context: this, data: 'startDate=' + $start + '&endDate=' + $end + '&action=stm_ajax_check_is_available_car_date&security=' + stm_security_nonce, success: function (data) { jQuery("#select-vehicle-popup").attr("href", jQuery("#select-vehicle-popup").attr('href').split("?")[0] + "?pickup_location=" + locationId); if (data != '') { clearTimeout(stm_timeout_rental); jQuery('.choose-another-class').addClass('single-add-to-compare-visible'); jQuery(".choose-another-class").addClass('car-reserved'); jQuery(".choose-another-class").find(".stm-title.h5").html(data); stm_timeout_rental = setTimeout(function () { jQuery('.choose-another-class').removeClass('single-add-to-compare-visible').removeClass('car-reserved'); }, 10000); } } }); } }

VENTAJAS

Alquileres de larga duración al mejor precio

Ponte en contacto con Mas Rental Car si vas a alquilar un coche más de 15 días, te podemos ofrecer un descuento extra que seguro que va a ser de tu agrado.

.icon_element_23328 i::before { color: #ffffff!important; } .icon_box_84163 { background-color: #ffffff; } } .icon_box_84163 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_84163:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_84163:hover .icon-text .content span, .icon_box_84163:hover .icon-text .content p { color: #6e6e6e !important; }

Precio final. Sin costes sorpresa

En Mas Rental Car no se cobran tasas por pagar con tarjeta de crédito.

.icon_element_99268 i::before { color: #ffffff!important; } .icon_box_83571 { background-color: #ffffff; } } .icon_box_83571 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_83571:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_83571:hover .icon-text .content span, .icon_box_83571:hover .icon-text .content p { color: #6e6e6e !important; }

Seguro a todo riesgo incluido

Mas Rental Car quiere que nuestros clientes solo piensen en recorrer nuestras islas, por eso todos nuestros coches se alquilan con seguro a todo riesgo con solo una franquicia de 150€.

.icon_element_83578 i::before { color: #ffffff!important; } .icon_box_1722 { background-color: #ffffff; } } .icon_box_1722 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_1722:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_1722:hover .icon-text .content span, .icon_box_1722:hover .icon-text .content p { color: #6e6e6e !important; }

Sillas para bebés y elevadores gratis

En Mas Rental Car los más pequeños siempre son bienvenidos, nuestras sillas homologadas no tienen ningún cargo extra.

.icon_element_27477 i::before { color: #ffffff!important; } .icon_box_39971 { background-color: #ffffff; } } .icon_box_39971 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_39971:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_39971:hover .icon-text .content span, .icon_box_39971:hover .icon-text .content p { color: #6e6e6e !important; }

Kilómetros ilimitados

Disfruta de nuestras islas sin limite de kilometros en tu coche de alquiler.

.icon_element_44015 i::before { color: #ffffff!important; } .icon_box_2974 { background-color: #ffffff; } } .icon_box_2974 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_2974:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_2974:hover .icon-text .content span, .icon_box_2974:hover .icon-text .content p { color: #6e6e6e !important; }

Cancelación gratuita

En estos momentos Mas Rental Car facilita nuestro servicio ofreciendo la posibilidad de cambios o cancelación gratuita hasta 48 horas antes de la recogida del coche de alquiler.

.icon_element_61944 i::before { color: #ffffff!important; } .icon_box_21750 { background-color: #ffffff; } } .icon_box_21750 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_21750:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_21750:hover .icon-text .content span, .icon_box_21750:hover .icon-text .content p { color: #6e6e6e !important; }

Flota moderna garantizada

Mas Rental Car forma parte del Grupo LG automoción, esto garantiza la renovación constante de nuestra flota de coches garantizando siempre la máxima calidad de vehículos de alquiler para nuestros clientes.

.icon_element_14697 i::before { color: #ffffff!important; } .icon_box_93491 { background-color: #ffffff; } } .icon_box_93491 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_93491:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_93491:hover .icon-text .content span, .icon_box_93491:hover .icon-text .content p { color: #6e6e6e !important; }

Atención al cliente 24H

En Mas Rental Car nuestros clientes son nuestro mayor valor, por este motivo disponen de teléfono de atención al cliente para cualquier situación que nos puedan necesitar. 24 horas al día, 365 días al año.

.icon_element_33217 i::before { color: #ffffff!important; } .icon_box_30864 { background-color: #ffffff; } } .icon_box_30864 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_30864:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_30864:hover .icon-text .content span, .icon_box_30864:hover .icon-text .content p { color: #6e6e6e !important; }

Política de combustibles

En Mas Rental Car, apostamos por la política de combustible «Lleno-Lleno”, siempre buscamos las fórmulas más transparentes y cómodas para nuestros clientes.

.icon_element_31554 i::before { color: #ffffff!important; } .icon_box_95563 { background-color: #ffffff; } } .icon_box_95563 .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 0.9); } .icon_box_95563:hover .icon-box-bottom-triangle { border-right-color: rgba(255,255,255, 1); } .icon-box .icon-text .content a { color: #888888; } .icon_box_95563:hover .icon-text .content span, .icon_box_95563:hover .icon-text .content p { color: #6e6e6e !important; }

VEHÍCULOS

¿QUÉ DICEN NUESTROS CLIENTES?

.testimonials-carousel .owl-nav.disabled { display: none!important; } (function($) { "use strict"; var owlRtl = false; if( $('body').hasClass('rtl') ) { owlRtl = true; } var owl = $('.testimonials_carousel_88989'); var loopOwl = (owl.find(".testimonial-unit").length > 1) ? true : false; $(document).on('ready', function () { owl.on('initialized.owl.carousel', function(e){ setTimeout(function () { owl.find('.owl-nav, .owl-dots, .stm-owl-prev, .stm-owl-next').wrapAll("
"); owl.trigger("to.owl.carousel", [0, 200]); }, 500); }); owl.owlCarousel({ rtl: owlRtl, items: 3, responsive: { 0: { items: 1 }, 769: { items: 3 } }, smartSpeed: 800, dots: true, nav: true, navElement: 'div', autoplay: false, loop: loopOwl, navText: '', responsiveRefreshRate: 1000 }); }); })(jQuery);

CONÓCENOS

¡Precios Bajos Exclusivos! !Flota de coches moderna!
Somos parte del Grupo LG automoción, especializado en la compra venta de vehículos en Canarias, esto nos da una gran ventaja a la hora de poder ofrecer a nuestros clientes una flota de coches siempre nuevos y de la mejor calidad. Y algo muy importante, esta unión nos da acceso a unos precios muy bajos exclusivos para Mas Rental Car.
¡Experiencia local!
Estamos orgullosos de nuestra tierra y tenemos un conocimiento profundo de la misma, el cual compartimos con nuestros clientes para que puedan sacar el máximo provecho de su coche de alquiler.
DISPONEMOS DE SERVICIO DE VENTA DE VEHÍCULOS
jQuery(document).on('ready', function ($) { var icon1 = 'https://masrentalcar.com/wp-content/themes/motors-child/assets/images/map-marker.png'; var icon2 = 'https://masrentalcar.com/wp-content/themes/motors-child/assets/images/map-marker.png'; function initialize() { var map; var mapStyles = [ { "featureType": "administrative", "elementType": "labels.text.fill", "stylers": [ { "color": "#444444" } ] }, { "featureType": "landscape", "elementType": "all", "stylers": [ { "color": "#f2f2f2" } ] }, { "featureType": "poi", "elementType": "all", "stylers": [ { "visibility": "off" } ] }, { "featureType": "road", "elementType": "all", "stylers": [ { "saturation": -100 }, { "lightness": 45 } ] }, { "featureType": "road.highway", "elementType": "all", "stylers": [ { "visibility": "simplified" } ] }, { "featureType": "road.arterial", "elementType": "labels.icon", "stylers": [ { "visibility": "off" } ] }, { "featureType": "transit", "elementType": "all", "stylers": [ { "visibility": "off" } ] }, { "featureType": "water", "elementType": "all", "stylers": [ { "color": "#6c98e1" }, { "visibility": "on" } ] } ]; var bounds = new google.maps.LatLngBounds(); var mapOptions = { mapTypeId: 'roadmap', scrollwheel: false, styles: mapStyles }; // Display a map on the page map = new google.maps.Map(document.getElementById("stm_map_offices"), mapOptions); map.setTilt(45); var markers = [["
Aeropuerto
Aeropuerto de Gran Canaria. Autopista GC-1, s\/n","28.062250","-15.420020",0,"Aeropuerto",1947],["
Las Palmas
Alfred Nobel n\u00ba2, nave 3 35013
Phone: +34 630 106 460","27.7581799","-27.7581799",1,"Las Palmas",1744],["
Arguinegu\u00edn
Alcalde Paco Gonz\u00e1lez, 2
Phone: +34 630 106 460","27.7581799","-15.6813995",2,"Arguinegu\u00edn",472]]; // Display multiple markers on a map var infoWindow = new google.maps.InfoWindow({ // pixelOffset: new google.maps.Size(-140, -215) }), marker, i; // Loop through our array of markers & place each one on the map for( i = 0; i < markers.length; i++ ) { var position = new google.maps.LatLng(markers[i][1], markers[i][2]); bounds.extend(position); marker = new google.maps.Marker({ position: position, map: map, title: markers[i][4], icon: icon1 }); google.maps.event.addListener(marker, 'mouseover', function() { this.setIcon(icon2); }); google.maps.event.addListener(marker, 'mouseout', function() { this.setIcon(icon1); }); // Allow each marker to have an info window google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { infoWindow.setContent(markers[i][0]); infoWindow.open(map, marker); } })(marker, i)); // Automatically center the map fitting all markers on the screen map.fitBounds(bounds); } var timeOut; // Override our map zoom level once our fitBounds function runs (Make sure it only runs once) var boundsListener = google.maps.event.addListener((map), 'bounds_changed', function(event) { window.clearTimeout(timeOut); timeOut = window.setTimeout(function () { map.setZoom(13); }, 400); google.maps.event.removeListener(boundsListener); }); google.maps.event.addListener(infoWindow, 'domready', function() { var iwOuter = $('.gm-style-iw'); var iwBackground = iwOuter.prev(); iwBackground.addClass('stm-iw-wrapper'); iwBackground.children(':nth-child(1)').addClass('stm-iw-first'); iwBackground.children(':nth-child(2)').addClass('stm-iw-second'); iwBackground.children(':nth-child(3)').addClass('stm-iw-third'); iwBackground.children(':nth-child(4)').addClass('stm-iw-fourth'); }); } // initialize map document.body.addEventListener('stm_gmap_api_loaded', initialize, false); });
There is no selected car class in current office. Please choose another Class!