-
Code's Tags
-
Your Codes
-
Reffers
-
Linked Codes
|
Code:
Short link for Twitter:
HTML:
HTML view:
Copy Source | Copy HTML- <article class="nobackground">
- <h3>Style in Code - new!</h3>
- <iframe src="http://code.google.com/apis/maps/documentation/javascript/examples/layer-fusiontables-styling.html"></iframe>
- </article>
- <article class="nobackground">
- <pre>
- ... var australia = new google.maps.LatLng(-25, 133);
- map = ...
- layer = new google.maps.FusionTablesLayer({
- query: {
- select: 'geometry',
- from: '815230'
- },
- styles: [{
- polygonOptions: {
- fillColor: "#00FF00",
- fillOpacity: 0.3
- }
- }, {
- where: "birds > 300",
- polygonOptions: {
- fillColor: "#0000FF"
- }
- }, {
- where: "population > 5",
- ...});
- layer.setMap(map);</pre>
- </article>
|