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>
</body>
</html>
              
            
!

CSS

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

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

#output {
  position:absolute;
  top:calc(100% - 30px);
  left:calc(50% - 100px);
  height:20px;
  width:180px;
  background-color:white;
  text-align:center;
  border-radius: 10px;
}
              
            
!

JS

              
                //Initialize a map instance.
var map = new atlas.Map('map', {

  view: "Auto",

  //Add your Azure Maps subscription key 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 draggable HTML marker.
  var marker = new atlas.HtmlMarker({
    draggable: true,

    //Tip: add "pointer-events:none" as a style on the html content to disable the default drag behaviour in MS Edge which will display an unwanted icon.
    htmlContent: '<image src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/1717245/ylw-pushpin.png" style="pointer-events: none;" />',

    position: [0, 0],
    pixelOffset: [6, -15]
  });

  var output = document.getElementById('output');

  //Add a drag event to get the position of the marker. Markers support drag, dragstart and dragend events.
  map.events.add('drag', marker, function () {
    var pos = marker.getOptions().position;

    //Round longitude,latitude values to 5 decimal places.
    output.innerText = Math.round(pos[0] * 100000) / 100000 + ', ' + Math.round(pos[1] * 100000) / 100000;
  });

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

Console