0

this is my first time make a map using Fusion Tables, I want two layers to display in this map, one with markers, and another with polygons,

I was using the styling shown in the tutorial https://developers.google.com/maps/documentation/javascript/layers#FusionTables to try out, but

I don't know what I've done wrong that neither is showing up?

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

4

2 に答える 2

0

Fusion Tables Layerウィザードを使用して、2つのマップを一緒にレイヤー化するコードを生成し、そこから変更することをお勧めします。

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

-レベッカ

于 2013-01-08T19:41:04.807 に答える
0

A layer will be shown on the map, when you set his map-property.

You set the map-property of layer in line 55:

layer.setMap(map);

...but there is no object layer, the objects are layer1 and layer2.

you must call:

layer1.setMap(map);
layer2.setMap(map);
于 2013-01-04T05:08:14.640 に答える