var map;
var world = new google.maps.LatLng(38,15);

function initialise() {
 
	var styles = [
	{
		featureType: "all",
		elementType: "geometry",
		stylers: [
			{ visibility: "off" }
		]
	},
	{
		featureType: "water",
		elementType: "all",
		stylers: [
			{ visibility: "off" }
		]
	},
	{
		featureType: "poi",
		elementType: "all",
		stylers: [
			{ visibility: "off" }
		]
	},
	{
		featureType: "landscape",
		elementType: "all",
		stylers: [
			{ visibility: "off" }
		]
	},
	{
		featureType: "administrative",
		elementType: "all",
		stylers: [
			{ visibility: "off" }
		]
	},
	{
		featureType: "road",
		elementType: "label",
		stylers: [
			{ visibility: "off" }
		]
	},
	{
		featureType: "road",
		elementType: "geometry",
		stylers: [
			{ hue: "#ff0586" },
			{ saturation: 0 },
			{ lightness: -20 },
			{ visibility: "on" }
		]
	}
	];
 
	var mapOptions = {
		zoom: 5,
		center: world,
		mapTypeControl: false,
		disableDefaultUI: true,
		scrollwheel: false,
	};
 
	map = new google.maps.Map(document.getElementById("map"), mapOptions);
 
	var styledMapOptions = {
		map: map,
		name: "Roads without Borders",
		minZoom: 5,
	}
 
	var MapType = new google.maps.StyledMapType(styles, styledMapOptions);
 
	map.mapTypes.set('Roads without Borders', MapType);
	map.setMapTypeId('Roads without Borders');
}

initialise();
