I am very impressed with Kathryn Hurley's article https://developers.google.com/fusiontables/docs/articles/data_gathering and I required the same type of application in fusion table map views. That is, I have created a fusion table layer with table ID=xxxxx where the data from multiple sources will inserted. Is it possible to create a filtered view for different data providers who can view only their set of data in the map?
1 Answers
0
votes
This is an example of query of fusiontable layer provided by google maps doc
var layer = new google.maps.FusionTablesLayer({
query: {
select: 'address',
from: '1d7qpn60tAvG4LEg4jvClZbc1ggp8fIGGvpMGzA',
where: 'ridership > 5000'
}
});
You can make different queries on the same fusiontable layer in different methods or different maps.
publish->get html and javascript. This source contains the javascript-code that creates the layer. You may use a query like shown in the post of Burton449 to filter the rows. - Dr.Molle