Created
February 6, 2012 20:10
-
-
Save csessig86/1754509 to your computer and use it in GitHub Desktop.
Multiple Fusion Tables layers (For blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loadmap() { | |
layer2 = new google.maps.FusionTablesLayer({ | |
query: { | |
select: 'geometry', | |
from: 2814002 | |
} | |
}); | |
layer2.setMap(map); | |
layer = new google.maps.FusionTablesLayer({ | |
query: { | |
select: 'Mappable_location', | |
from: 2813443 | |
} | |
}); | |
layer.setMap(map); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment