This lab covers the basics for creating a basic starter mapping application. The starter map simply loads a default base map, and centers and zooms it in in a MapView. If you are new to ArcGIS and need a full set of instructions on building a basic mapping application visit the Getting Started with MapView tutorial.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>JS API Starter App</title>
<link rel="stylesheet" href="https://js.arcgis.com/4.1/esri/css/main.css">
<style>
html, body, #viewDiv {
padding: 0;
margin: 0;
height: 100%;
}
</style>
<script src="https://js.arcgis.com/4.1/"></script>
<script>
require([
"esri/Map",
"esri/views/MapView",
"dojo/domReady!"
], function(Map, MapView) {
var map = new Map({
basemap: "dark-gray"
});
var view = new MapView({
container: "viewDiv",
map: map,
center: [-122.68, 45.52],
zoom: 10
});
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html>
Output
panel should show a dark-grey map centered on Portland, Oregon.Your app should look something like this:
topo
or gray
.Declare the view
variable globally instead and open your browser’s javascript console (see some instructions here). You can then interactively control the view from your browser console by referring to the view
global variable. Many browsers will autocomplete once you’ve typed view.
. For example, change the view extent, center point, zoom level or scale. See here for some examples.
Hint: If you’re in a JS Bin, pop the Output into a separate window/tab to get direct access from the console.
var view; // DECLARE the 'view' variable globally.
require([
"esri/Map",
"esri/views/MapView",
"dojo/domReady!"
], function(
Map, MapView) {
...
view = new MapView({ // REMOVE the 'var' so we're setting the new global 'view' variable.
container: "viewDiv",
map: map,
center: [-122.68, 45.52],
zoom: 10
});
Try changing the map’s basemap by drilling down through the view.map
property. E.g. view.map.basemap = "streets"
.
Note: You typically don’t want to declare global variables like we do here, but it’s good to know how to do it for debugging and exploring the API. Plus you’re learning about JavaScript variable scope!