Loading Map Data

The map is in development. Double check everything.
i

Search supports a query language called Liqe. Liqe allows you to perform complex search queries using the following fields:


Search for the term 'cow' anywhere in the marker (case insensitive):
cow

Search for the term 'cow' anywhere in the marker (case sensitive):
'cow'
"cow"

Search for a marker with a SNO name containing 'cow':
name:cow

Search for all markers in the Actor SNO group:
group:actor

Search for all markers that are not in the Actor group:
-group:actor

Search for all markers in the Actor or Encounter SNO group:
group:actor OR group:encounter

Search using regex:
name:/[cow]{3}/

Search using wildcard:
name:c*w

Search for anything that contains 'cow' but doesn't contain 'meat':
cow -meat

See the Liqe documentation for more advanced usage.