Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <html>
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>

<body>
  <div id="map"></div>
  
  <img id="loadingIcon" src="https://assets.codepen.io/1717245/loadingIcon.gif" title="Loading" style="position:absolute;left:calc(50% - 25px);top:calc(50% - 25px);display:none;" />

    <div style="position:absolute;top:0px;left:calc(50% - 100px);background-color:white;padding:5px;">Drag marker to get elevation.</div>
</body>

</html>
              
            
!

CSS

              
                html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

#map {
  width: 100%;
  height: 100%;
}
              
            
!

JS

              
                var elevationPointUrl = 'https://{azMapsDomain}/elevation/point/json?api-version=1.0&points={points}';

var popup;

//Initialize a map instance.
var map = new atlas.Map('map', {
  center: [-73.985708, 40.75773],
  zoom: 12,
  view: "Auto",
  //Add your Azure Maps subscription client ID to the map SDK.
  authOptions: {
    authType: "anonymous",
    clientId: "04ec075f-3827-4aed-9975-d56301a2d663", //Your Azure Maps account Client ID is required to access your Azure Maps account.

    getToken: function (resolve, reject, map) {
      //URL to your authentication service that retrieves an Azure Active Directory Token.
      var tokenServiceUrl = "https://azuremapscodesamples.azurewebsites.net/Common/TokenService.ashx";

      fetch(tokenServiceUrl).then(r => r.text()).then(token => resolve(token));
    }
  }
});

//Wait until the map resources are ready.
map.events.add('ready', function () {
  //Create a popup but leave it closed so we can update and display it later.
  popup = new atlas.Popup({
    pixelOffset: [0, -18]
  });

  //Create a draggable HTML marker.
  var marker = new atlas.HtmlMarker({
    draggable: true,
    position: [0, 0],
    position: map.getCamera().center
  });

  //Add a drag start event to hide the popup.
  map.events.add('dragstart', marker, popup.close);

  //Add a drag end event to get the position of the marker, then request the elevation and display it in the popup.
  map.events.add('dragend', marker, function () {
    var pos = marker.getOptions().position;

    //Show loading icon.
    document.getElementById('loadingIcon').style.display = '';
    processRequest(elevationPointUrl.replace('{points}', pos.join(','))).then(response => {
      if (response.error) {
        alert(response.error.message);
        return;
      }

      popup.setOptions({
        position: pos,
        content: `<div style="padding:10px">Elevation: ${response.data[0].elevationInMeter}m</div>`
      });

      popup.open(map);

      //Hide loading icon.
      document.getElementById('loadingIcon').style.display = 'none';
    });
  });

  //Add the marker to the map.
  map.markers.add(marker);
});

function processRequest(url) {
  return new Promise((resolve, reject) => {
    //Replace the domain placeholder to ensure the same Azure Maps cloud is used throughout the app.
    url = url.replace('{azMapsDomain}', atlas.getDomain());

    //Get the authentication details from the map for use in the request.
    var requestParams = map.authentication.signRequest({ url: url });

    //Transform the request.
    var transform = map.getServiceOptions().tranformRequest;
    if (transform) {
      requestParams = transform(request);
    }

    fetch(requestParams.url, {
      method: 'GET',
      mode: 'cors',
      headers: new Headers(requestParams.headers)
    })
      .then(r => r.json(), e => reject(e))
      .then(r => {
      resolve(r);
    }, e => reject(e));
  });
}

              
            
!
999px

Console