$(function(){
var mapTypes = [{
key: "roadmap",
name: "Road Map"
}, {
key: "satellite",
name: "Satellite (Photographic) Map"
}, {
key: "hybrid",
name: "Hybrid Map"
}];
var map = $("#map").dxMap({
center: "Brooklyn Bridge,New York,NY",
zoom: 14,
height: 400,
width: "100%",
provider: "bing",
apiKey: {
// Specify your API keys for each map provider:
//bing: "YOUR_BING_MAPS_API_KEY",
//google: "YOUR_GOOGLE_MAPS_API_KEY",
//googleStatic: "YOUR_GOOGLE_STATIC_MAPS_API_KEY"
},
type: mapTypes[0].key
}).dxMap("instance");
$("#choose-type").dxSelectBox({
dataSource: mapTypes,
displayExpr: "name",
valueExpr: "key",
value: mapTypes[0].key,
onValueChanged: function (data) {
map.option("type", data.value);
}
});
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/20.2.4/js/dx.all.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="map"></div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<span>Map Type</span>
<div id="choose-type"></div>
</div>
</div>
</div>
</body>
</html>
.options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
margin-top: 20px;
}
.caption {
font-size: 18px;
font-weight: 500;
}
.option {
margin-top: 10px;
}
.option > span {
display: inline-block;
width: 100px;
}
.option > .dx-selectbox {
width: 100%;
max-width: 350px;
display: inline-block;
vertical-align: middle;
}