You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>GMaps.js allows to add Fusion Table layers:</p>
42
+
<pre>map.getFromFusionTables({
43
+
query: {
44
+
select: '\'Geocodable address\'',
45
+
from: '1mZ53Z70NsChnBMm-qEYmSDOvLXgrreLTkQUvvg'
50
46
},
51
47
events: {
52
-
click: function(){
53
-
console.log(this);
48
+
click: function(marker){
49
+
console.log(marker);
54
50
}
55
51
}
56
52
});</pre>
57
53
<p>
58
-
<spanclass="label notice">Note</span> You can use the following positions:
59
-
<ul>
60
-
<li>top_center</li>
61
-
<li>top_left</li>
62
-
<li>top_right</li>
63
-
<li>left_top</li>
64
-
<li>right_top</li>
65
-
<li>left_center</li>
66
-
<li>right_center</li>
67
-
<li>left_bottom</li>
68
-
<li>right_bottom</li>
69
-
<li>bottom_center</li>
70
-
<li>bottom_left</li>
71
-
<li>bottom_right</li>
72
-
</ul>
73
-
You can learn more of custom controls <ahref="https://developers.google.com/maps/documentation/javascript/controls">here</a>.</p>
54
+
<spanclass="label notice">Note</span> You can learn more about Fusion Table layers <ahref="https://developers.google.com/maps/documentation/javascript/layers#FusionTables">here</a>.</p>
0 commit comments