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