Basically, I have database of gas stations in my area. I track which
offer certain services, i.e. A=E85, B=state vehicle inspections,
C=basic auto repair service, D=car wash, etc. I would like to plot
the entire universe of gas stations, and filter them by attribute.
Is there any way to create one KML file that allows this
functionality?
Thanks!
You could come close in KML, but only if you're willing to duplicate
information. You could store each of your attributes in a separate
Folder, like this:
<Folder>
<name>E85</name>
....[a bunch of placemarks]
</Folder>
<Folder>
<name>State Vehicle Inspections</name>
[a bunch of placemarks]
</Folder>
The problem is one Placemark may qualify in both of those Folders, and
will appear in both of them.
One solution may be to have people put their requests in via a web
page and have a script that generates the KML automatically.
ManoM
Thanks,
Tim
The only future plans for KML that Google has made public are in the
KML 2.2 beta reference, available at:
http://code.google.com/apis/kml/documentation/kml_tags_beta1.html
Please note, very much a beta document!
ManoM