Como criar um mapa logístico - Amazon Location Service

As traduções são geradas por tradução automática. Em caso de conflito entre o conteúdo da tradução e da versão original em inglês, a versão em inglês prevalecerá.

Como criar um mapa logístico

O TravelModes recurso permite criar mapas logísticos usando o Amazon Location Service. TravelModes exibe informações de roteamento relevantes para navegação de caminhões com restrições rodoviárias relacionadas. Use o Transit TravelMode para mostrar detalhes do transporte público.

Crie um mapa com Truck TravelMode

Este exemplo mostra como criar um mapa com Truck TravelMode roteamento logístico.

index.html
<!DOCTYPE html> <html lang="en"> <head> <title>Truck Map</title> <meta charset='utf-8'> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel='stylesheet' href='https://unpkg.com/maplibre-gl@5.x/dist/maplibre-gl.css' /> <script src='https://unpkg.com/maplibre-gl@5.x/dist/maplibre-gl.js'></script> </head> <body style="margin: 0; padding: 0;"> <div id="map" style="width: 100%; height: 100vh;"></div> <script> const apiKey = "Add Your Api Key"; const mapStyle = "Standard"; const awsRegion = "us-east-1"; const map = new maplibregl.Map({ container: 'map', style: `https://maps.geo.${awsRegion}.amazonaws.com/v2/styles/${mapStyle}/descriptor?travel-modes=Truck&key=${apiKey}`, center: [-74.0060 ,40.7128], zoom: 12, validateStyle: false, // Disable style validation for faster map load }); </script> </body> </html>
style.css
body { margin: 0; padding: 0; } #map { width: 100%; height: 100vh; }