我设法用Googlemaps做路线规划,但我希望人们下载他们的路线。
我已将下面的代码放在download.php文件中,但有些错误,因为当我测试它时文件是空白的。
任何人都知道出了什么问题?
它创建的路线是否称为其他东西? 我不确定它是否知道要下载的路由名称,我编写了Myroute.gpx ??
我使用的代码是: -
<? ob_start(); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body><?php
//download.php
//content type header('Content-type: Application/octet-stream');
//open/save dialog box
header('Content-Disposition: attachment; filename="MyRoute.gpx"');
//read from server and write to buffer
readfile('text.txt');
?>
</body>
</html><? ob_flush(); ?>
感谢