Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Back to post

Revisions 3

4 years ago
Cleaning up my messy map
Cleaning up my messy map
Sounds like you might be interested in marker clustering. It's easy to enable for your map in the xml. Just set the "markerClustering" attribute to have a value of "enabled". ``` <map latitudeAttribute="latitude" longituteAttribute="longitude" markerClustering="enabled"> . . </map> ``` The clustering is done by grouping markers located in fixed grids on the map and is implemented using a default Google Map API clusterer. It is actually described in the official documentation too: [https://wiki.mezzanineware.com/x/C4QOAQ](https://)
Sounds like you might be interested in marker clustering. It's easy to enable it your source code for the map xml. Just set the "markerClustering" attribute to have a value of "enabled". ``` <map latitudeAttribute="latitude" longituteAttribute="longitude" markerClustering="enabled"> . . </map> ``` The clustering is done by grouping markers located in fixed grids on the map and is implemented using a default Google Map API clusterer. It is actually described in the official documentation too: [https://wiki.mezzanineware.com/x/C4QOAQ](https://)
4 years ago
Cleaning up my messy map
Cleaning up my messy map
Sounds like you might be interested in marker clustering. It's easy to enable it your source code for the map xml. Just set the "markerClustering" attribute to have a value of "enabled". ``` <map latitudeAttribute="latitude" longituteAttribute="longitude" markerClustering="enabled"> . . </map> ``` The clustering is done by grouping markers located in fixed grids on the map and is implemented using a default Google Map API clusterer. It is actually described in the official documentation too: [https://wiki.mezzanineware.com/x/C4QOAQ](https://)
Sounds like you might be interested in marker clustering. It's easy to enable it your source code for the map xml. Just set the "markerClustering" attribute to have a value of "enabled". ``` <map latitudeAttribute="latitude" longituteAttribute="longitude" markerClustering="enabled"> . . </map> ``` The clustering is done by grouping markers located in fixed grids on the map and is implemented using a default Google Map API clusterer. It is actually described in the official documentation too: https://wiki.mezzanineware.com/x/C4QOAQ
4 years ago
Original
Cleaning up my messy map

Sounds like you might be interested in marker clustering. It's easy to enable it your source code for the map xml. Just set the "markerClustering" attribute to have a value of "enabled". ``` <map latitudeAttribute="latitude" longituteAttribute="longitude" markerClustering="enabled"> . . </map> ``` The clustering is done by grouping markers located in fixed grids on the map and is implemented using a default Google Map API clusterer. It is actually described in the official documentation too: https://wiki.mezzanineware.com/x/C4QOAQ