3D globe with custom marker overlays
Create custom non-colliding marker overlays on your 3D globe map using the Marker Layout on top of MapTiler SDK JS.
This example shows how to display the information from the city and town label layers. In this example, we are using the filter function to only create markers in features of type "country", "city", "village" or "town".
NPM module setup
npm install --save @maptiler/sdk @maptiler/marker-layout
import { Map, MapStyle, config } from '@maptiler/sdk';
import '@maptiler/sdk/dist/maptiler-sdk.css';
import { MarkerLayout } from '@maptiler/marker-layout';
config.apiKey = 'YOUR_MAPTILER_API_KEY_HERE';
const appContainer = document.getElementById('map');
const map = new Map({
container: appContainer, // container's id or the HTML element to render the map
style: MapStyle.STREETS,
center: [-70.8, 0], // starting position [lng, lat]
zoom: 1.5, // starting zoom
projection: 'globe' //enable globe projection
});
// Creating the div that will contain all the markers
const markerContainer = document.createElement("div");
appContainer.appendChild(markerContainer);
(async () => {
await map.onReadyAsync();
const markerManager = new MarkerLayout(map, {
layers: ["Country labels", "Capital city labels", "City labels", "Place labels", "Town labels"],
markerSize: [140, 80],
markerAnchor: "top",
offset: [0, -8], // so that the tip of the marker bottom pin lands on the city dot
sortingProperty: "rank",
// With `sortingProperty` option as a function, the following is equivalent to the above
// sortingProperty: (feature) => {
// return feature.properties.rank;
// },
filter: ((feature) => {
console.log(feature.properties);
return ["country", "city", "village", "town"].includes(feature.properties.class)
})
});
// This object contains the marker DIV so that they can be updated rather than fully recreated every time
const markerLogicContainer = {};
// This function will be used as the callback for some map events
const updateMarkers = () => {
const markerStatus = markerManager.update();
if (!markerStatus) return;
// Remove the div that corresponds to removed markers
markerStatus.removed.forEach((abstractMarker) => {
const markerDiv = markerLogicContainer[abstractMarker.id];
delete markerLogicContainer[abstractMarker.id];
markerContainer.removeChild(markerDiv);
});
// Update the div that corresponds to updated markers
markerStatus.updated.forEach((abstractMarker) => {
const markerDiv = markerLogicContainer[abstractMarker.id];
updateMarkerDiv(abstractMarker, markerDiv);
});
// Create the div that corresponds to the new markers
markerStatus.new.forEach((abstractMarker) => {
const markerDiv = makeMarker(abstractMarker);
markerLogicContainer[abstractMarker.id] = markerDiv;
markerContainer.appendChild(markerDiv);
});
}
// The "idle" event is triggered every second because of the particle layer being refreshed,
// even though their is no new data loaded, so this approach proved to be the best for this scenario
map.on("move", updateMarkers);
map.on("moveend", () => {
map.once("idle", updateMarkers);
})
updateMarkers();
})()
function makeMarker(abstractMarker) {
const marker = document.createElement("div");
marker.classList.add("marker");
marker.classList.add('fade-in-animation');
marker.style.setProperty("width", `${abstractMarker.size[0]}px`);
marker.style.setProperty("height", `${abstractMarker.size[1]}px`);
marker.style.setProperty("transform", `translate(${abstractMarker.position[0]}px, ${abstractMarker.position[1]}px)`);
const feature = abstractMarker.features[0];
marker.innerHTML = `
<div class="markerPointy"></div>
<div class="markerBody">
<div class="markerTop">
${feature.properties["name:en"] || feature.properties["name"]}
</div>
<div class="markerBottom">
<ul>
<li><b>Name:</b> ${feature.properties.name}</li>
<li><b>Class:</b> ${feature.properties.class}</li>
<li><b>Rank:</b> ${feature.properties.rank}</li>
</ul>
</div>
</div>
`
return marker;
}
function updateMarkerDiv(abstractMarker, marker) {
marker.style.setProperty("width", `${abstractMarker.size[0]}px`);
marker.style.setProperty("height", `${abstractMarker.size[1]}px`);
marker.style.setProperty("transform", `translate(${abstractMarker.position[0]}px, ${abstractMarker.position[1]}px)`);
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<title>3D globe with custom marker overlays | NPM example</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="map"></div>
<script type="module" src="./main.js"></script>
</body>
</html>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
ul {
list-style-type: none;
padding: 0;
margin: 5px;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
.marker {
position: absolute;
pointer-events: none;
color: #000;
line-height: 12px;
box-shadow: #00000040 0px 2px 10px;
}
.markerPointy {
width: 12px;
height: 12px;
background-color: #e6e6e6;
position: absolute;
transform: rotate(45deg) translate(-70%);
bottom: -12px;
left: 0;
right: -12px;
margin: auto;
box-shadow: #00000040 0px 2px 10px;
}
.markerBody {
position: absolute;
background: #e6e6e6;
width: 100%;
height: 100%;
top: 0;
border-radius: 2px;
}
.markerTop {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
width: 100%;
height: 20px;
line-height: 20px;
text-align: center;
background: #4d4d4d;
color: white;
font-size: 15px;
font-weight: 400;
}
.markerBottom {
border-radius: inherit;
width: 100%;
height: calc(100% - 20px);
display: flex;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.fade-in-animation {
animation: fadeIn 0.5s ease forwards;
}
Related examples
Projection control (globe)
TutorialsToggle between Mercator and globe projections using map controls.
Add a 3D model to globe using MapTiler 3D JS
ExamplesIntegrate 3D models into your interactive globe map surface.
Filtered Marker Layout
ExamplesCreate non-colliding marker overlays to display the information from the city and town label layers.
Weather icons Marker Layout
ExamplesCreate a weather map using the Marker Layout to show your custom weather markers icons, animated SVGs or Lotties.