Question : <script type=”text/javascript” src=”http://maps.google.com/maps/api/js?key=AIzaSyDUZgjcLfmsJUX7oKmJhG_jqJK_gK0xkng”></script><bodyonload=”initialize();”> <?php $geocode=file_get_contents(‘http://maps.google.com/maps/api/geocode/json?address=’.urlencode($imovel->endereco).’&sensor=false’); $output= json_decode($geocode); if($output->status === ‘ZERO_RESULTS’){ } else { $lat = $output->results[0]->geometry->location->lat; $long = […]