Spring naar de hoofdinhoud

Ontwikkeling

Technische documentatie Schaduwstand

Met schaduwstand kun je bekijken hoe de zon om jouw woning heen draait. Je hoeft alleen maar locatiegegevens of een adres mee te sturen d.m.v. een embed code, super simpel dus!

Onderstaand een paar voorbeelden hoe je schaduwstand op jouw website kunt gebruiken.

<?php
    // Schaduwstand op basis van latitude en longitude
    $url = 'https://schaduwstand.tussendoor.nl';
    $args = [
        'lat' => '53.194881',
        'long' => '5.800490',
    ];
?>
<iframe src="<?= $url . '?' . http_build_query($args); ?>" style="display: block; border: 0;"></iframe>

<?php
    // Schaduwstand op basis van adresgegevens
    $url = 'https://schaduwstand.tussendoor.nl';
    $args = [
        's' => 'Sixmastraat 66-2 Leeuwarden',
    ];
?>
<iframe src="<?= $url . '?' . http_build_query($args); ?>" style="display: block; border: 0;"></iframe>

<?php
    /**
     * Wanneer je gebruik maakt van WordPress kun je ook de add_query_arg functie gebruiken
     */
?>

<?php
    // Schaduwstand op basis van latitude en longitude
    $url = add_query_arg([
        'lat' => '53.194881',
        'long' => '5.800490',
    ], 'https://schaduwstand.tussendoor.nl');
?>
<iframe src="<?= $url; ?>" style="display: block; border: 0;"></iframe>

<?php
    // Schaduwstand op basis van adresgegevens
    $url = add_query_arg([
        's' => 'Sixmastraat 66-2 Leeuwarden',
    ], 'https://schaduwstand.tussendoor.nl');
?>
<iframe src="<?= $url; ?>" style="display: block; border: 0;"></iframe>