ahhhhh
This commit is contained in:
commit
dc2bc9c1a7
236 changed files with 57278 additions and 0 deletions
7
js/bootstrap.min.js
vendored
Normal file
7
js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
85
js/contact.js
Normal file
85
js/contact.js
Normal file
|
@ -0,0 +1,85 @@
|
|||
$(document).ready(function(){
|
||||
|
||||
(function($) {
|
||||
"use strict";
|
||||
|
||||
|
||||
jQuery.validator.addMethod('answercheck', function (value, element) {
|
||||
return this.optional(element) || /^\bcat\b$/.test(value)
|
||||
}, "type the correct answer -_-");
|
||||
|
||||
// validate contactForm form
|
||||
$(function() {
|
||||
$('#contactForm').validate({
|
||||
rules: {
|
||||
name: {
|
||||
required: true,
|
||||
minlength: 2
|
||||
},
|
||||
subject: {
|
||||
required: true,
|
||||
minlength: 4
|
||||
},
|
||||
number: {
|
||||
required: true,
|
||||
minlength: 5
|
||||
},
|
||||
email: {
|
||||
required: true,
|
||||
email: true
|
||||
},
|
||||
message: {
|
||||
required: true,
|
||||
minlength: 20
|
||||
}
|
||||
},
|
||||
messages: {
|
||||
name: {
|
||||
required: "come on, you have a name, don't you?",
|
||||
minlength: "your name must consist of at least 2 characters"
|
||||
},
|
||||
subject: {
|
||||
required: "come on, you have a subject, don't you?",
|
||||
minlength: "your subject must consist of at least 4 characters"
|
||||
},
|
||||
number: {
|
||||
required: "come on, you have a number, don't you?",
|
||||
minlength: "your Number must consist of at least 5 characters"
|
||||
},
|
||||
email: {
|
||||
required: "no email, no message"
|
||||
},
|
||||
message: {
|
||||
required: "um...yea, you have to write something to send this form.",
|
||||
minlength: "thats all? really?"
|
||||
}
|
||||
},
|
||||
submitHandler: function(form) {
|
||||
$(form).ajaxSubmit({
|
||||
type:"POST",
|
||||
data: $(form).serialize(),
|
||||
url:"contact_process.php",
|
||||
success: function() {
|
||||
$('#contactForm :input').attr('disabled', 'disabled');
|
||||
$('#contactForm').fadeTo( "slow", 1, function() {
|
||||
$(this).find(':input').attr('disabled', 'disabled');
|
||||
$(this).find('label').css('cursor','default');
|
||||
$('#success').fadeIn()
|
||||
$('.modal').modal('hide');
|
||||
$('#success').modal('show');
|
||||
})
|
||||
},
|
||||
error: function() {
|
||||
$('#contactForm').fadeTo( "slow", 1, function() {
|
||||
$('#error').fadeIn()
|
||||
$('.modal').modal('hide');
|
||||
$('#error').modal('show');
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
})(jQuery)
|
||||
})
|
302
js/custom.js
Normal file
302
js/custom.js
Normal file
|
@ -0,0 +1,302 @@
|
|||
;(function($){
|
||||
"use strict"
|
||||
var nav_offset_top = $('.header_area').height()+50;
|
||||
/*-------------------------------------------------------------------------------
|
||||
Navbar
|
||||
-------------------------------------------------------------------------------*/
|
||||
|
||||
//* Navbar Fixed
|
||||
function navbarFixed(){
|
||||
if ( $('.header_area').length ){
|
||||
$(window).scroll(function() {
|
||||
var scroll = $(window).scrollTop();
|
||||
if (scroll >= nav_offset_top ) {
|
||||
$(".header_area").addClass("navbar_fixed");
|
||||
} else {
|
||||
$(".header_area").removeClass("navbar_fixed");
|
||||
}
|
||||
});
|
||||
};
|
||||
};
|
||||
navbarFixed();
|
||||
|
||||
function testimonialSlider(){
|
||||
if ( $('.testimonial_slider').length ){
|
||||
$('.testimonial_slider').owlCarousel({
|
||||
loop:true,
|
||||
margin: 30,
|
||||
items: 2,
|
||||
nav:false,
|
||||
autoplay: true,
|
||||
dots: true,
|
||||
smartSpeed: 1500,
|
||||
responsiveClass: true,
|
||||
responsive: {
|
||||
0: {
|
||||
items: 1,
|
||||
},
|
||||
768: {
|
||||
items: 2,
|
||||
},
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
testimonialSlider();
|
||||
|
||||
//------- Mailchimp js --------//
|
||||
|
||||
function mailChimp(){
|
||||
$('#mc_embed_signup').find('form').ajaxChimp();
|
||||
}
|
||||
mailChimp();
|
||||
|
||||
/* ===== Parallax Effect===== */
|
||||
|
||||
function parallaxEffect() {
|
||||
$('.bg-parallax').parallax();
|
||||
}
|
||||
parallaxEffect();
|
||||
|
||||
|
||||
$('select').niceSelect();
|
||||
$('#datetimepicker11,#datetimepicker1').datetimepicker({
|
||||
daysOfWeekDisabled: [0, 6]
|
||||
});
|
||||
|
||||
/*---------gallery isotope js-----------*/
|
||||
function galleryMasonry(){
|
||||
if ( $('#gallery').length ){
|
||||
$('#gallery').imagesLoaded( function() {
|
||||
// images have loaded
|
||||
// Activate isotope in container
|
||||
$("#gallery").isotope({
|
||||
itemSelector: ".gallery_item",
|
||||
layoutMode: 'masonry',
|
||||
animationOptions: {
|
||||
duration: 750,
|
||||
easing: 'linear'
|
||||
}
|
||||
});
|
||||
})
|
||||
}
|
||||
}
|
||||
galleryMasonry();
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* Simple LightBox js
|
||||
/*----------------------------------------------------*/
|
||||
$('.imageGallery1 .light').simpleLightbox();
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* Google map js
|
||||
/*----------------------------------------------------*/
|
||||
|
||||
if ( $('#mapBox').length ){
|
||||
var $lat = $('#mapBox').data('lat');
|
||||
var $lon = $('#mapBox').data('lon');
|
||||
var $zoom = $('#mapBox').data('zoom');
|
||||
var $marker = $('#mapBox').data('marker');
|
||||
var $info = $('#mapBox').data('info');
|
||||
var $markerLat = $('#mapBox').data('mlat');
|
||||
var $markerLon = $('#mapBox').data('mlon');
|
||||
var map = new GMaps({
|
||||
el: '#mapBox',
|
||||
lat: $lat,
|
||||
lng: $lon,
|
||||
scrollwheel: false,
|
||||
scaleControl: true,
|
||||
streetViewControl: false,
|
||||
panControl: true,
|
||||
disableDoubleClickZoom: true,
|
||||
mapTypeControl: false,
|
||||
zoom: $zoom,
|
||||
styles: [
|
||||
{
|
||||
"featureType": "water",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#dcdfe6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "transit",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#808080"
|
||||
},
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.highway",
|
||||
"elementType": "geometry.stroke",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#dcdfe6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.highway",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#ffffff"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.local",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#ffffff"
|
||||
},
|
||||
{
|
||||
"weight": 1.8
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.local",
|
||||
"elementType": "geometry.stroke",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#d7d7d7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#ebebeb"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "administrative",
|
||||
"elementType": "geometry",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#a7a7a7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#ffffff"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#ffffff"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "landscape",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#efefef"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#696969"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "administrative",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#737373"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "labels.icon",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "labels",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"elementType": "geometry.stroke",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#d6d6d6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road",
|
||||
"elementType": "labels.icon",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#dadada"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
})(jQuery)
|
2
js/gmaps.min.js
vendored
Normal file
2
js/gmaps.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4
js/jquery-3.2.1.min.js
vendored
Normal file
4
js/jquery-3.2.1.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
120
js/jquery.ajaxchimp.min.js
vendored
Normal file
120
js/jquery.ajaxchimp.min.js
vendored
Normal file
|
@ -0,0 +1,120 @@
|
|||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
$.ajaxChimp = {
|
||||
responses: {
|
||||
'We have sent you a confirmation email' : 0,
|
||||
'Please enter a valid email' : 1,
|
||||
'An email address must contain a single @' : 2,
|
||||
'The domain portion of the email address is invalid (the portion after the @: )' : 3,
|
||||
'The username portion of the email address is invalid (the portion before the @: )' : 4,
|
||||
'This email address looks fake or invalid. Please enter a real email address' : 5
|
||||
},
|
||||
translations: {
|
||||
'en': null
|
||||
},
|
||||
init: function (selector, options) {
|
||||
$(selector).ajaxChimp(options);
|
||||
}
|
||||
};
|
||||
|
||||
$.fn.ajaxChimp = function (options) {
|
||||
$(this).each(function(i, elem) {
|
||||
var form = $(elem);
|
||||
var email = form.find('input[type=email]');
|
||||
var label = form.find('.info');
|
||||
|
||||
var settings = $.extend({
|
||||
'url': form.attr('action'),
|
||||
'language': 'en'
|
||||
}, options);
|
||||
|
||||
var url = settings.url.replace('/post?', '/post-json?').concat('&c=?');
|
||||
|
||||
form.attr('novalidate', 'true');
|
||||
email.attr('name', 'EMAIL');
|
||||
|
||||
form.submit(function () {
|
||||
var msg;
|
||||
function successCallback(resp) {
|
||||
if (resp.result === 'success') {
|
||||
msg = 'We have sent you a confirmation email';
|
||||
label.removeClass('error').addClass('valid');
|
||||
email.removeClass('error').addClass('valid');
|
||||
} else {
|
||||
email.removeClass('valid').addClass('error');
|
||||
label.removeClass('valid').addClass('error');
|
||||
var index = -1;
|
||||
try {
|
||||
var parts = resp.msg.split(' - ', 2);
|
||||
if (parts[1] === undefined) {
|
||||
msg = resp.msg;
|
||||
} else {
|
||||
var i = parseInt(parts[0], 10);
|
||||
if (i.toString() === parts[0]) {
|
||||
index = parts[0];
|
||||
msg = parts[1];
|
||||
} else {
|
||||
index = -1;
|
||||
msg = resp.msg;
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (e) {
|
||||
index = -1;
|
||||
msg = resp.msg;
|
||||
}
|
||||
}
|
||||
|
||||
// Translate and display message
|
||||
if (
|
||||
settings.language !== 'en'
|
||||
&& $.ajaxChimp.responses[msg] !== undefined
|
||||
&& $.ajaxChimp.translations
|
||||
&& $.ajaxChimp.translations[settings.language]
|
||||
&& $.ajaxChimp.translations[settings.language][$.ajaxChimp.responses[msg]]
|
||||
) {
|
||||
msg = $.ajaxChimp.translations[settings.language][$.ajaxChimp.responses[msg]];
|
||||
}
|
||||
label.html(msg);
|
||||
|
||||
label.show(2000);
|
||||
if (settings.callback) {
|
||||
settings.callback(resp);
|
||||
}
|
||||
}
|
||||
|
||||
var data = {};
|
||||
var dataArray = form.serializeArray();
|
||||
$.each(dataArray, function (index, item) {
|
||||
data[item.name] = item.value;
|
||||
});
|
||||
|
||||
$.ajax({
|
||||
url: url,
|
||||
data: data,
|
||||
success: successCallback,
|
||||
dataType: 'jsonp',
|
||||
error: function (resp, text) {
|
||||
console.log('mailchimp ajax submit error: ' + text);
|
||||
}
|
||||
});
|
||||
|
||||
// Translate and display submit message
|
||||
var submitMsg = 'Submitting...';
|
||||
if(
|
||||
settings.language !== 'en'
|
||||
&& $.ajaxChimp.translations
|
||||
&& $.ajaxChimp.translations[settings.language]
|
||||
&& $.ajaxChimp.translations[settings.language]['submit']
|
||||
) {
|
||||
submitMsg = $.ajaxChimp.translations[settings.language]['submit'];
|
||||
}
|
||||
label.html(submitMsg).show(2000);
|
||||
|
||||
return false;
|
||||
});
|
||||
});
|
||||
return this;
|
||||
};
|
||||
})(jQuery);
|
1174
js/jquery.form.js
Normal file
1174
js/jquery.form.js
Normal file
File diff suppressed because it is too large
Load diff
2
js/jquery.validate.min.js
vendored
Normal file
2
js/jquery.validate.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
31
js/mail-script.js
Normal file
31
js/mail-script.js
Normal file
|
@ -0,0 +1,31 @@
|
|||
// ------- Mail Send ajax
|
||||
|
||||
$(document).ready(function() {
|
||||
var form = $('#myForm'); // contact form
|
||||
var submit = $('.submit-btn'); // submit button
|
||||
var alert = $('.alert-msg'); // alert div for show alert message
|
||||
|
||||
// form submit event
|
||||
form.on('submit', function(e) {
|
||||
e.preventDefault(); // prevent default form submit
|
||||
|
||||
$.ajax({
|
||||
url: 'mail.php', // form action url
|
||||
type: 'POST', // form submit method get/post
|
||||
dataType: 'html', // request type html/json/xml
|
||||
data: form.serialize(), // serialize form data
|
||||
beforeSend: function() {
|
||||
alert.fadeOut();
|
||||
submit.html('Sending....'); // change submit button text
|
||||
},
|
||||
success: function(data) {
|
||||
alert.html(data).fadeIn(); // fade in response data
|
||||
form.trigger('reset'); // reset form
|
||||
submit.attr("style", "display: none !important");; // reset submit button text
|
||||
},
|
||||
error: function(e) {
|
||||
console.log(e)
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
5
js/popper.js
Normal file
5
js/popper.js
Normal file
File diff suppressed because one or more lines are too long
18
js/stellar.js
Normal file
18
js/stellar.js
Normal file
File diff suppressed because one or more lines are too long
353
js/theme.js
Normal file
353
js/theme.js
Normal file
|
@ -0,0 +1,353 @@
|
|||
;(function($){
|
||||
"use strict"
|
||||
|
||||
|
||||
var nav_offset_top = $('header').height() + 50;
|
||||
/*-------------------------------------------------------------------------------
|
||||
Navbar
|
||||
-------------------------------------------------------------------------------*/
|
||||
|
||||
//* Navbar Fixed
|
||||
function navbarFixed(){
|
||||
if ( $('.header_area').length ){
|
||||
$(window).scroll(function() {
|
||||
var scroll = $(window).scrollTop();
|
||||
if (scroll >= nav_offset_top ) {
|
||||
$(".header_area").addClass("navbar_fixed");
|
||||
} else {
|
||||
$(".header_area").removeClass("navbar_fixed");
|
||||
}
|
||||
});
|
||||
};
|
||||
};
|
||||
navbarFixed();
|
||||
|
||||
|
||||
$('.main_menu .navbar-nav li a[href^="#"]:not([href="#"]').on('click', function(event) {
|
||||
var $anchor = $(this);
|
||||
$('html, body').stop().animate({
|
||||
scrollTop: $($anchor.attr('href')).offset().top - 70
|
||||
}, 1500);
|
||||
event.preventDefault();
|
||||
});
|
||||
|
||||
// Activate scrollspy to add active class to navbar items on scroll
|
||||
$(window).on('load', function() {
|
||||
$('body').scrollspy({
|
||||
target: '#mainNav',
|
||||
offset: 70
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* Parallax Effect js
|
||||
/*----------------------------------------------------*/
|
||||
function parallaxEffect() {
|
||||
$('.bg-parallax').parallax();
|
||||
}
|
||||
parallaxEffect();
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
$('.popup-youtube, .popup-vimeo, .popup-gmaps').magnificPopup({
|
||||
disableOn: 700,
|
||||
type: 'iframe',
|
||||
mainClass: 'mfp-fade',
|
||||
removalDelay: 160,
|
||||
preloader: false,
|
||||
|
||||
fixedContentPos: false
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* MailChimp Slider
|
||||
/*----------------------------------------------------*/
|
||||
function mailChimp(){
|
||||
$('#mc_embed_signup').find('form').ajaxChimp();
|
||||
}
|
||||
mailChimp();
|
||||
|
||||
$('select').niceSelect();
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* Simple LightBox js
|
||||
/*----------------------------------------------------*/
|
||||
$('.imageGallery1 .light').simpleLightbox();
|
||||
|
||||
$('.counter').counterUp({
|
||||
delay: 10,
|
||||
time: 1000
|
||||
});
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* Testimonials Slider
|
||||
/*----------------------------------------------------*/
|
||||
function testimonials_slider(){
|
||||
if ( $('.testi_slider').length ){
|
||||
$('.testi_slider').owlCarousel({
|
||||
loop:true,
|
||||
margin: 30,
|
||||
items: 2,
|
||||
nav: false,
|
||||
autoplay: true,
|
||||
smartSpeed: 1500,
|
||||
dots:false,
|
||||
responsiveClass: true,
|
||||
responsive: {
|
||||
0: {
|
||||
items: 1,
|
||||
},
|
||||
768: {
|
||||
items: 2,
|
||||
},
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
testimonials_slider();
|
||||
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* Testimonials Slider
|
||||
/*----------------------------------------------------*/
|
||||
function screenshot_slider(){
|
||||
if ( $('.screenshot_inner').length ){
|
||||
$('.screenshot_inner').owlCarousel({
|
||||
loop:true,
|
||||
margin: 30,
|
||||
items: 4,
|
||||
nav: false,
|
||||
autoplay: true,
|
||||
smartSpeed: 1500,
|
||||
dots:false,
|
||||
responsiveClass: true,
|
||||
responsive: {
|
||||
0: {
|
||||
items: 2,
|
||||
},
|
||||
576: {
|
||||
items: 4,
|
||||
},
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
screenshot_slider();
|
||||
|
||||
|
||||
/*----------------------------------------------------*/
|
||||
/* Google map js
|
||||
/*----------------------------------------------------*/
|
||||
|
||||
if ( $('#mapBox').length ){
|
||||
var $lat = $('#mapBox').data('lat');
|
||||
var $lon = $('#mapBox').data('lon');
|
||||
var $zoom = $('#mapBox').data('zoom');
|
||||
var $marker = $('#mapBox').data('marker');
|
||||
var $info = $('#mapBox').data('info');
|
||||
var $markerLat = $('#mapBox').data('mlat');
|
||||
var $markerLon = $('#mapBox').data('mlon');
|
||||
var map = new GMaps({
|
||||
el: '#mapBox',
|
||||
lat: $lat,
|
||||
lng: $lon,
|
||||
scrollwheel: false,
|
||||
scaleControl: true,
|
||||
streetViewControl: false,
|
||||
panControl: true,
|
||||
disableDoubleClickZoom: true,
|
||||
mapTypeControl: false,
|
||||
zoom: $zoom,
|
||||
styles: [
|
||||
{
|
||||
"featureType": "water",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#dcdfe6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "transit",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#808080"
|
||||
},
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.highway",
|
||||
"elementType": "geometry.stroke",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#dcdfe6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.highway",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#ffffff"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.local",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#ffffff"
|
||||
},
|
||||
{
|
||||
"weight": 1.8
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.local",
|
||||
"elementType": "geometry.stroke",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#d7d7d7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#ebebeb"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "administrative",
|
||||
"elementType": "geometry",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#a7a7a7"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#ffffff"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#ffffff"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "landscape",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#efefef"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#696969"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "administrative",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "on"
|
||||
},
|
||||
{
|
||||
"color": "#737373"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "labels.icon",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "labels",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"elementType": "geometry.stroke",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#d6d6d6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"featureType": "road",
|
||||
"elementType": "labels.icon",
|
||||
"stylers": [
|
||||
{
|
||||
"visibility": "off"
|
||||
}
|
||||
]
|
||||
},
|
||||
{},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "geometry.fill",
|
||||
"stylers": [
|
||||
{
|
||||
"color": "#dadada"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
})(jQuery)
|
Loading…
Add table
Add a link
Reference in a new issue