I got the map to view in the tab and it was working fine up till today. Keep in mind I have touched any code in for the map view since I got it working. All of a sudden nothing is being view on the map view anymore, just a the map grid. What would be causing this? I have tried a new API key and it does not seem to work. Google Maps loads everything fine. I even tried it on other phones, still just a grid.
maps class
package com.nyneaxis.api.gascloud;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
import android.os.Bundle;
import android.widget.LinearLayout;
public class StationsMap extends MapActivity {
LinearLayout linearLayout;
MapView mapView;
public void onCreate(Bundle savedInstanceState){
mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
}
maps.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainlayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="ABQIAAAAYc7mzgA4G-2FaBLUHTM_1xTjBItGPNb7O-Zq4IGUb6RxSdEi4RQ7Y-p4UARzkmuBTxknyrJRWOA31w"
/>
</RelativeLayout>