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
Answered
Cleaning up my messy map

I have a map in my application but since we've been capturing lots of data there are thousands of markers and it's getting difficult to distinguish between them. Is there some way that I can "clean up" my map with some form of drill down.
I don't really want to add manual filters to my view but will if that's the only option.

1
1
Posted 4 years ago
Votes Newest

Answers


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

  
  

Thanks, that's exactly what I had in mind.

Chuck Norris   4 years ago Report
153 Views
1 Answer
4 years ago
4 years ago
Tags