Google maps api 3 谷歌地图引擎API v3上的图层

Google maps api 3 谷歌地图引擎API v3上的图层,google-maps-api-3,layer,Google Maps Api 3,Layer,我有三个层,我想显示在我的地图上,但没有一个显示出来。我的初始化函数有问题吗?我已经在script标记中做出了所有正确的声明,所以我不知道问题还会出在哪里 function initialize() { geocoder = new google.maps.Geocoder(); var latlng = new google.maps.LatLng (37.80, -122.27); var mapOptions = { zoom: 13, zoomControl: true,

我有三个层,我想显示在我的地图上,但没有一个显示出来。我的初始化函数有问题吗?我已经在script标记中做出了所有正确的声明,所以我不知道问题还会出在哪里

function initialize() {
geocoder = new google.maps.Geocoder();

var latlng = new google.maps.LatLng (37.80, -122.27);

var mapOptions = 
{    
zoom: 13,
zoomControl: true, 
mapTypeControl: false,
panControl: false,    
center: latlng,    
mapTypeId: google.maps.MapTypeId.ROADMAP  
};


var image = 'css-js/images/hospitalicon-24.png';

map = new google.maps.Map(document.getElementById('map-canvas'),      mapOptions);

//Fire Stations
var mapsEngineLayer = new google.maps.visualization.MapsEngineLayer({
  layerId: '08042600090929941501-16143158689603361093',
  map: map
});
//Hospitals
var mapsEngineLayer1 = new google.maps.visualization.MapsEngineLayer({
  layerId: '08042600090929941501-08112974690991164587',
  map: map
});

//Police Stations
var mapsEngineLayer2 = new google.maps.visualization.MapsEngineLayer({
  layerId: '08042600090929941501-11613121305523030954',
  map: map
});

}

有吗?是的,你在上面看到的就是我所拥有的,layerId存在,我将设置更改为public,但图层仍然没有显示