To jest podstawowy przykład wczytywania mapy o niestandardowym stylu za pomocą identyfikatora mapy. W tym przypadku kod JavaScript Maps odwołuje się do mapy ID 8e0a97af9386fef
podczas wczytywania mapy i automatycznie stosuje styl mapy powiązany z tym identyfikatorem.
TypeScript
function initMap(): void { new google.maps.Map( document.getElementById("map") as HTMLElement, { mapId: "8e0a97af9386fef", center: { lat: 48.85, lng: 2.35 }, zoom: 12, } as google.maps.MapOptions ); } declare global { interface Window { initMap: () => void; } } window.initMap = initMap;
JavaScript
function initMap() { new google.maps.Map(document.getElementById("map"), { mapId: "8e0a97af9386fef", center: { lat: 48.85, lng: 2.35 }, zoom: 12, }); } window.initMap = initMap;