这是我第一次使用 Fusion Tables 制作地图,我希望在这张地图中显示两个图层,一个带有标记,另一个带有多边形,
我正在使用教程https://developers.google.com/maps/documentation/javascript/layers#FusionTables中显示的样式进行尝试,但是
我不知道我做错了什么没有出现?
这是我第一次使用 Fusion Tables 制作地图,我希望在这张地图中显示两个图层,一个带有标记,另一个带有多边形,
我正在使用教程https://developers.google.com/maps/documentation/javascript/layers#FusionTables中显示的样式进行尝试,但是
我不知道我做错了什么没有出现?
当您设置他的地图属性时,地图上将显示一个图层。
layer
您在第 55 行设置了 map-property :
layer.setMap(map);
...但是没有对象layer
,对象是layer1
和layer2
。
您必须致电:
layer1.setMap(map);
layer2.setMap(map);
我建议使用 Fusion Tables Layer 向导生成将两个地图分层的代码,然后从那里进行修改:
http://fusion-tables-api-samples.googlecode.com/svn/trunk/FusionTablesLayerWizard/src/index.html
-丽贝卡