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>
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
  <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%;
}

 /* CSS styles used by custom popup template */
.customInfobox {
  max-width: 200px;
  padding: 10px;
  font-size: 12px;
}

.customInfobox .name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
              
            
!

JS

              
                var datasource, popup;

//Define an HTML template for a custom popup content laypout.
var popupTemplate = '<div class="customInfobox"><div class="name">{name}</div>{description}</div>';

//Initialize a map instance.
var map = new atlas.Map('map', {
  center: [-122.33, 47.641],
  zoom: 13,
  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, r accessing your Azure Maps accountmap) {
      //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 data source and add it to the map.
  datasource = new atlas.source.DataSource(null, {
    cluster: true
  });
  map.sources.add(datasource);

  //Create three point features on the map and add some metadata in the properties which we will want to display in a popup.
  var point1 = new atlas.data.Feature(new atlas.data.Point([-122.33, 47.64]), {
    name: 'Point 1 Title',
    description: 'This is the description 1.'
  });

  var point2 = new atlas.data.Feature(new atlas.data.Point([-122.335, 47.645]), {
    name: 'Point 2 Title',
    description: 'This is the description 2.'
  });

  var point3 = new atlas.data.Feature(new atlas.data.Point([-122.325, 47.635]), {
    name: 'Point 3 Title',
    description: 'This is the description 3.'
  });

  //Add the symbol to the data source.
  datasource.add([point1, point2, point3]);

  //Add a layer for rendering point data as symbols.
  var symbolLayer = new atlas.layer.SymbolLayer(datasource, null, {
    iconOptions: {
      image: 'pin-red'
    }
  });
  map.layers.add(symbolLayer);

  //Create a popup but leave it closed so we can update it and display it later.
  popup = new atlas.Popup({
    pixelOffset: [0, -18]
  });

  //Add a click event to the symbol layer.
  map.events.add('click', symbolLayer, symbolClicked);
});

function symbolClicked(e) {
  //Make sure the event occured on a point feature.
  if (e.shapes && e.shapes.length > 0) {
    var content, coordinate;

    //Check to see if the first value in the shapes array is a Point Shape.
    if (e.shapes[0] instanceof atlas.Shape && e.shapes[0].getType() === 'Point') {
      var properties = e.shapes[0].getProperties();
      content = popupTemplate.replace(/{name}/g, properties.name).replace(/{description}/g, properties.description);
      coordinate = e.shapes[0].getCoordinates();
    } else if (e.shapes[0].type === 'Feature' && e.shapes[0].geometry.type === 'Point') {

      //Check to see if the feature is a cluster.
      if (e.shapes[0].properties.cluster) {
        content = '<div style="padding:10px;">Cluster of ' + e.shapes[0].properties.point_count + ' symbols</div>';
      } else {
        //Feature is likely from a VectorTileSource.
        content = popupTemplate.replace(/{name}/g, properties.name).replace(/{description}/g, properties.description);
      }

      coordinate = e.shapes[0].geometry.coordinates;
    }

    if (content && coordinate) {
      //Populate the popupTemplate with data from the clicked point feature.
      popup.setOptions({
        //Update the content of the popup.
        content: content,

        //Update the position of the popup with the symbols coordinate.
        position: coordinate
      });

      //Open the popup.
      popup.open(map);
    }
  }
}
              
            
!
999px

Console