在Android应用程序中显示静态谷歌地图位置

时间:2015-01-14 10:30:01

标签: java android

这是我在Android应用程序中使用html显示静态谷歌地图的代码,但是当我打开活动时它显示为空白。 请帮我解决这个问题,我是android新手,

JAVA

WebView overview = (WebView) findViewById(R.id.googlemap_webView);
        overview.loadUrl("file:///android_asset/content/googlelocation.html");  

googlelocation.html

<!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=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<iframe width="600" height="450" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=Crescent%20Builders%2C%20Cherooty%20Road%2C%20Vellayil%2C%20Calicut%2C%20Kerala%2C%20India&key=AIzaSyCeBlSt-PVun7-08LrM6mIS5Nd0NCRVpDM"></iframe>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

在Google Maps for Android的最新版本中添加了静态地图。见https://developers.google.com/maps/documentation/android/lite

除非您有充分的理由使用网络版,否则Android特定版本的效果会更好。