Skip to content

Instantly share code, notes, and snippets.

@mokus80
Created March 9, 2015 16:36
Show Gist options
  • Save mokus80/a2d68241997778af09b4 to your computer and use it in GitHub Desktop.
Save mokus80/a2d68241997778af09b4 to your computer and use it in GitHub Desktop.
page = @options["page"] || 0
per = @options["per"] || 10
lat = @options["lat"]
lng = @options["lng"]
epid = @options["leadpipe_account_id"]
radius = @options["radius"].to_i * 1000 # convert km to m
results = IndexManager.search_index.search("", {
attributesToRetrieve: ["leadpipe_account_id"],
aroundLatLng: "#{lat},#{lng}",
aroundRadius: radius,
tagFilters: ["epid:#{epid}", "lead_assignment_subscription:true"],
hitsPerPage: per,
page: page })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment