Hello, how do I select multiple "types" to have the same style when
setting a style in a Fusion table.
Tried as below
where: "'description' = 'asphalt','stones','wood' ",
where: "'description' in ( 'asphalt','stones','wood') ",
where: "'description' = 'asphalt' or 'description' = 'stones' or
'description' = 'wood' ",
Org works with "one type" selected
query: {
select: 'geometry',
from: '0000000'},
});
gronlager.setOptions({
styles: [{
where: "'description' = 'asphalt' ",
polygonOptions: {
fillColor: "3399FF",
strokeColor: "000000",
strokeWeight: 1,
fillOpacity: 0.9
}
}
, {
where: "'description' contains 'stairs'",
polygonOptions: {
strokeColor: "0000FF",
strokeWeight: 1.5,
}
}
]});
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-maps-js-api-v3?hl=en.