Newbie on waze. How can I insert it in my site? [closed]

-4

I have a website and I need to insert a waze api map. How do I do?

Code

<?php//exibiroMapa?><style>.exibirpainel{margin-top:0px;height:400px;width:700px;background-color:blue;}</style><divid="exibirpainel" class="exibirpainel">




</div>
    
asked by anonymous 15.06.2017 / 02:41

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>

Problemsolved.Linkto waze documentation

    
15.06.2017 / 20:05