如何使用其他文件中的地址api autocomplete

时间:2018-06-12 10:52:08

标签: php google-places-api google-places googleplacesautocomplete google-app-engine-php

我愿意使用其他文件中的地址实现地点api自动完成,但我几乎不知道如何做到这一点。欢迎提出建议。 基本上,我有一个readtxt.php,其目的是从存储上提供的文件中读取地址。我想将该地址用作我的地方自动填充表单的输入地址。

readtxt.php
$target_url = 'https://storage.googleapis.com/bucketname/filename.txt';
$content=file_get_contents($target_url);
echo($content);
"./Places.html?content=".$content

Places.html包含以下代码: https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform

在Places文件中我使用以下内容获取内容:$ address = [$ _ GET($ content)]; 但我被困在这里 P.S:我是一名新手程序员。

0 个答案:

没有答案