谷歌静态地图api - 参数不起作用hl = ru

时间:2014-06-03 09:55:21

标签: api static maps

$pic  = file_get_contents("http://maps.googleapis.com/maps/api/staticmap?hl=ru&center=55.6373,34.3276&zoom=6&size=640x135&scale=2");
file_put_contents('/var/www/mysute.ru/img/1.jpg',$pic);

我尝试将地图图像保存在服务器上,但是图像仍然不是我设置的那种错误的语言?

1 个答案:

答案 0 :(得分:3)

您必须为服务器中的file_put_contents提供正确的位置..

file_put_contents('<%=request.getContextPath()%>/var/www/mysute.ru/img/1.jpg',$pic);

检查并告诉它,它真的对我有用......