我在Android上加载Google地图时出现蓝屏。我不知道我做错了什么,这是我获取地点的代码:
MapView mapView = (MapView) findViewById(R.id.mapDire);
Route route = directions(new GeoPoint((int)(2*1E6),(int)(34*1E6)),
new GeoPoint((int)(3*1E6),(int)(36*1E6)));
答案 0 :(得分:13)
答案 1 :(得分:1)
我的应用程序中存在此问题,请参见
// data contain form data with access_token variable with its value, acces_token will be get you when u created npm genrator-rest
addCountries(data) {
return this._http.post("http://localhost:9000/countries", data).pipe(
map((res: Response) => {
return res.json();
})
);
}
方法中的以下代码并加以解决。
onlocationchanged
答案 2 :(得分:0)
通常蓝屏意味着您的Google API密钥不起作用。
答案 3 :(得分:0)
如果您的地图未显示,则仅显示网格/空白屏幕,因为您的地图API密钥缺失或不正确。注册Google Android Map API。
请尝试使用此the link了解详情。
答案 4 :(得分:0)
关于您为何看到蓝屏的原因可能有3个