0

这是我第一次使用 Fusion Tables 制作地图,我希望在这张地图中显示两个图层,一个带有标记,另一个带有多边形,

我正在使用教程https://developers.google.com/maps/documentation/javascript/layers#FusionTables中显示的样式进行尝试,但是

我不知道我做错了什么没有出现?

http://www.missromi.com/maps/miami-test.html

4

2 回答 2

0

当您设置他的地图属性时,地图上将显示一个图层。

layer您在第 55 行设置了 map-property :

layer.setMap(map);

...但是没有对象layer,对象是layer1layer2

您必须致电:

layer1.setMap(map);
layer2.setMap(map);
于 2013-01-04T05:08:14.640 回答
0

我建议使用 Fusion Tables Layer 向导生成将两个地图分层的代码,然后从那里进行修改:

http://fusion-tables-api-samples.googlecode.com/svn/trunk/FusionTablesLayerWizard/src/index.html

-丽贝卡

于 2013-01-08T19:41:04.807 回答