Newcomer to Waze. How can I insert on my website?

Asked

Viewed 99 times

-4

I have a website and need to insert a map of the Waze api. How do I? inserir a descrição da imagem aqui

Code

<?php
//exibir o Mapa

?>




<style>
    .exibirpainel{
            margin-top: 0px;
            height: 400px;
            width: 700px;
            background-color: blue;
    }
</style>







<div id="exibirpainel" class="exibirpainel">




</div>

1 answer

0


I was able to solve this problem by inserting an iframe in my PHP system

<div id="exibirMapa" class="exibirMapa">

<iframe src="https://embed.waze.com/iframe?zoom=12&lat=32.10911&lon=34.81773" width="700" height="500"></iframe>

</div>

inserir a descrição da imagem aqui

Problem solved. Link to the documentation of Waze

Browser other questions tagged

You are not signed in. Login or sign up in order to post.